ImageUploader

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

layout.tsx (596B)


      1 import type { Metadata } from "next";
      2 import { Inter } from "next/font/google";
      3 import { AppRouterCacheProvider } from '@mui/material-nextjs/v14-appRouter';
      4 
      5 const inter = Inter({ subsets: ["latin"] });
      6 
      7 export const metadata: Metadata = {
      8   title: "Image Uploader",
      9   description: "Image Uploader",
     10 };
     11 
     12 export default function RootLayout({
     13   children,
     14 }: Readonly<{
     15   children: React.ReactNode;
     16 }>) {
     17   return (
     18     <html lang="jp">
     19       <body className={inter.className}>
     20         <AppRouterCacheProvider>
     21           {children}
     22         </AppRouterCacheProvider>
     23       </body>
     24     </html>
     25   );
     26 }