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 /> }