mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-05 12:16:13 +01:00
* Use tRPC for recent groups page * Use tRPC for adding group by URL * Use tRPC for saving visited group * Group context
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import BalancesAndReimbursements from '@/app/groups/[groupId]/balances/balances-and-reimbursements'
|
|
import { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Balances',
|
|
}
|
|
|
|
export default async function GroupPage() {
|
|
return <BalancesAndReimbursements />
|
|
}
|