XeNote/components/Layout.js
2022-04-18 09:09:58 +07:00

16 lines
361 B
JavaScript

import Head from 'next/head'
// import BasicTree from 'lib/MyFolderTree'
export const siteTitle = 'Digital Backroom - An Internet Archive'
import {Box} from '@mui/material'
export default function Layout({children}) {
return (
<div>
<main className= "theme-light">
{children}
</main>
</div>
)
}