mirror of
https://github.com/gromlab-ru/svg-sprites.git
synced 2026-07-22 20:50:19 +03:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
|
|
import type { ReactNode } from 'react'
|
||
|
|
|
||
|
|
import './style.css'
|
||
|
|
|
||
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
||
|
|
return (
|
||
|
|
<html lang="en">
|
||
|
|
<body>{children}</body>
|
||
|
|
</html>
|
||
|
|
)
|
||
|
|
}
|