use consistent React import style

This commit is contained in:
Brian Beck 2025-11-19 01:49:26 -05:00
parent 8cb98a5b46
commit 660addc5da
2 changed files with 12 additions and 8 deletions

View file

@ -1,3 +1,4 @@
import { ReactNode } from "react";
import "./style.css";
export const metadata = {
@ -5,11 +6,7 @@ export const metadata = {
description: "Tribes 2 forever.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>