aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
blob: d8aff39908aa4fec33feaaca98b68a7ad4dc5e73 (plain)
1
2
3
4
5
import { PropsWithChildren } from 'react'

export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
  return <main>{children}</main>
}