import { ReactNode } from 'react'; type Props = { children: ReactNode; }; export default function LayoutTop( { children }: Props ) { return
{ children }
; }