mirror of
https://github.com/vernu/textbee.git
synced 2026-04-20 15:01:00 -04:00
13 lines
255 B
TypeScript
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>
|
|
)
|
|
}
|