Better loading behavior

This commit is contained in:
Sebastien Castiel
2023-12-06 12:39:54 -05:00
parent 6c4ced0f79
commit c72311d01a
13 changed files with 144 additions and 127 deletions

View File

@@ -0,0 +1,5 @@
import { PropsWithChildren } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
return <main>{children}</main>
}