aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/page.tsx
blob: 4366ec51c87db0aa0bd320c0bacd603dabdac5dd (plain)
1
2
3
4
5
6
7
8
9
10
import { RecentGroupList } from '@/app/groups/recent-group-list'
import { Metadata } from 'next'

export const metadata: Metadata = {
  title: 'Recently visited groups',
}

export default async function GroupsPage() {
  return <RecentGroupList />
}