mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-17 13:06:13 +01:00
11 lines
249 B
TypeScript
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 />
|
|
}
|