aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-06 12:39:54 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-06 12:39:54 -0500
commitc72311d01a827a61d6d3d786416ddb442076d73a (patch)
tree131861ab1df1a0cb09ed52ead5ecde8edad6e997 /src/app/groups/layout.tsx
parent6c4ced0f79f801d85da5e4973ae4154f01b04dba (diff)
Better loading behavior
Diffstat (limited to 'src/app/groups/layout.tsx')
-rw-r--r--src/app/groups/layout.tsx5
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>
+}