diff options
Diffstat (limited to 'src/app/groups/layout.tsx')
| -rw-r--r-- | src/app/groups/layout.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx new file mode 100644 index 0000000..d8aff39 --- /dev/null +++ b/src/app/groups/layout.tsx @@ -0,0 +1,5 @@ +import { PropsWithChildren } from 'react' + +export default function GroupsLayout({ children }: PropsWithChildren<{}>) { + return <main>{children}</main> +} |
