first commit
This commit is contained in:
14
apps/frontend/app/family/[groupId]/page.tsx
Normal file
14
apps/frontend/app/family/[groupId]/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
'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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user