TriWorldBench's picture
Update TriWorldBench web from desktop manager
1187856 verified
Raw
History Blame Contribute Delete
262 Bytes
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}</>;
}