File size: 262 Bytes
1187856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import type { Metadata } from "next";
import "@/styles/triworldbench.css";
export const metadata: Metadata = {
title: "TriWorldBench",
};
export default function TriWorldLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
|