aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
blob: dadd3a121accd7f29c86e9e3693486e1ecef05fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { FeedbackButton } from '@/components/feedback-button/feedback-button'
import { PropsWithChildren } from 'react'

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