mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-09 05:39:06 +01:00
* Add tRPC, use it for group expense list * Use tRPC for balances * Use tRPC in group information + better loading states
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
import GroupInformation from '@/app/groups/[groupId]/information/group-information'
|
|
import { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Group Information',
|
|
}
|
|
|
|
export default function InformationPage({
|
|
params: { groupId },
|
|
}: {
|
|
params: { groupId: string }
|
|
}) {
|
|
return <GroupInformation groupId={groupId} />
|
|
}
|