feat(slot blocking): add buttons to sidebar
Some checks failed
container-scan / Container Scan (pull_request) Has been cancelled
docker-build / docker (pull_request) Has been cancelled
tests / Tests (pull_request) Has been cancelled

This commit is contained in:
Dominik 2025-06-30 20:45:29 +02:00
parent 016b4371c2
commit ce3c7598f9
Signed by: dominik
GPG key ID: 06A4003FC5049644
7 changed files with 31 additions and 20 deletions

View 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} />;
}