mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-28 10:26:12 +01:00
First version
This commit is contained in:
14
src/app/groups/page.tsx
Normal file
14
src/app/groups/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { RecentGroupList } from '@/app/groups/recent-group-list'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import Link from 'next/link'
|
||||
|
||||
export default async function GroupsPage() {
|
||||
return (
|
||||
<main>
|
||||
<Button asChild>
|
||||
<Link href="/groups/create">New group</Link>
|
||||
</Button>
|
||||
<RecentGroupList />
|
||||
</main>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user