mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-02 20:10:35 +00:00
18 lines
285 B
TypeScript
18 lines
285 B
TypeScript
import "./style.css";
|
|
|
|
export const metadata = {
|
|
title: "Tribes 2 Maps",
|
|
description: "Be the map genius.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|