feat(slot blocking): add buttons to sidebar
This commit is contained in:
parent
016b4371c2
commit
ce3c7598f9
7 changed files with 31 additions and 20 deletions
10
src/app/(main)/blocker/[slotId]/page.tsx
Normal file
10
src/app/(main)/blocker/[slotId]/page.tsx
Normal file
|
@ -0,0 +1,10 @@
|
|||
import BlockedSlotForm from '@/components/forms/blocked-slot-form';
|
||||
|
||||
export default async function NewBlockedSlotPage({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{ slotId?: string }>;
|
||||
}) {
|
||||
const resolvedParams = await params;
|
||||
return <BlockedSlotForm existingBlockedSlotId={resolvedParams.slotId} />;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue