aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
blob: 65aec0e7e61fd73c863af6a6d01f103b2b191356 (plain)
1
2
3
4
5
6
7
8
9
import { PropsWithChildren } from 'react'

export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
  return (
    <main className="flex-1 max-w-screen-md w-full mx-auto p-4 flex flex-col gap-2">
      {children}
    </main>
  )
}