import React from 'react' export default async function Root({ children, }: { children: React.ReactNode }) { return (
Nested Layout {children}
) }