mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-14 11:36:13 +01:00
12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import { PropsWithChildren, Suspense } from 'react'
|
|
|
|
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
|
|
return (
|
|
<Suspense>
|
|
<main className="flex-1 max-w-screen-md w-full mx-auto px-4 py-6 flex flex-col gap-6">
|
|
{children}
|
|
</main>
|
|
</Suspense>
|
|
)
|
|
}
|