import { ReactNode } from 'react' export default function ALayout({ children }: { children: ReactNode }) { return
{children}
}