mirror of
https://github.com/VSCodium/icons.git
synced 2025-12-10 03:53:52 -06:00
12 lines
159 B
TypeScript
12 lines
159 B
TypeScript
interface LayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export function Layout({ children }: LayoutProps) {
|
|
return (
|
|
<>
|
|
<main>{children}</main>
|
|
</>
|
|
)
|
|
}
|