18 lines
324 B
TypeScript
18 lines
324 B
TypeScript
|
import "../src/styles/generics.css"
|
||
|
import "../src/styles/button.css"
|
||
|
import "../src/styles/ripple.css"
|
||
|
|
||
|
export default function RootLayout({
|
||
|
children,
|
||
|
}: {
|
||
|
children: React.ReactNode
|
||
|
}) {
|
||
|
return (
|
||
|
<html lang="en">
|
||
|
<body>
|
||
|
{children}
|
||
|
</body>
|
||
|
</html>
|
||
|
)
|
||
|
}
|