mirror of
https://github.com/spliit-app/spliit.git
synced 2026-03-01 10:56:13 +01:00
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
export default async function GroupPage({
|
|
params: { groupId },
|
|
}: {
|
|
params: { groupId: string }
|
|
}) {
|
|
redirect(`/groups/${groupId}/expenses`)
|
|
}
|