mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-27 13:52:47 -07:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
interface RootRouteProps {
|
|
children: ReactNode
|
|
}
|
|
|
|
export default function RootRoute({ children }: RootRouteProps): JSX.Element {
|
|
return <main className="main">{children}</main>
|
|
}
|