import type { ReactNode, JSX } from 'react' import { Head } from 'tuono' interface RootRouteProps { children: ReactNode } export default function RootRoute({ children }: RootRouteProps): JSX.Element { return ( <> Tuono tutorial
{children}
) }