Files
spliit/src/app/groups/page.tsx
2024-01-24 11:12:55 -05:00

11 lines
249 B
TypeScript

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