15 lines
411 B
TypeScript
15 lines
411 B
TypeScript
'use client';
|
|
|
|
import { use } from 'react';
|
|
import { IdShell } from '@/components/id/shell';
|
|
import { FamilyGroupView } from '@/components/family/family-group-view';
|
|
|
|
export default function FamilyGroupPage({ params }: { params: Promise<{ groupId: string }> }) {
|
|
const { groupId } = use(params);
|
|
return (
|
|
<IdShell active="/family" wide>
|
|
<FamilyGroupView groupId={groupId} />
|
|
</IdShell>
|
|
);
|
|
}
|