1 2 3 4 5
import { PropsWithChildren } from 'react' export default function GroupsLayout({ children }: PropsWithChildren<{}>) { return <main>{children}</main> }