Files
textbee/web/app/layout.tsx
2024-10-26 15:20:58 +03:00

13 lines
255 B
TypeScript

import { PropsWithChildren } from 'react'
import '@/styles/main.css'
export default async function RootLayout({ children }: PropsWithChildren) {
return (
<html lang='en'>
<body>
<main>{children}</main>
</body>
</html>
)
}