aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/page.tsx
blob: 7e4f48462549dee9b15f1a7c6a11f83fa583b682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
  )
}