textualize/frontend/app/layout.tsx
Joshua Shoemaker 3fafbcc1d6 init commit
2022-12-06 22:13:02 -06:00

10 lines
268 B
TypeScript

import '../styles/globals.css'
type AppLayoutProps = {
children: React.ReactNode
}
export default function MainAppLayout({ children }: AppLayoutProps) {
return <html className='bg-gray-100 bg-opacity-0'><body className='min-h-screen' >{children}</body></html>
}