8 lines
114 B
TypeScript
8 lines
114 B
TypeScript
|
|
export default function EtleLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode
|
||
|
|
}) {
|
||
|
|
return <>{children}</>
|
||
|
|
}
|