blob: df7d39e3a17ee45c77fca600d8aca101c9252601 (
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">
{children}
</main>
)
}
|