Files
spliit/src/app/groups/[groupId]/activity/page.tsx
Sebastien Castiel 4db788680e Use tRPC for recent groups page (#253)
* Use tRPC for recent groups page

* Use tRPC for adding group by URL

* Use tRPC for saving visited group

* Group context
2024-10-20 17:50:52 -04:00

11 lines
255 B
TypeScript

import { ActivityPageClient } from '@/app/groups/[groupId]/activity/page.client'
import { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Activity',
}
export default async function ActivityPage() {
return <ActivityPageClient />
}