"use client"; import { NotdienstForm, type NotdienstCalendarItem, } from "./notdienst-form"; type NotdienstEntryProps = { targetYear: number; targetMonth: number; isLocked: boolean; requiredDaysTotal: number; initialSelectedDates: string[]; childrenIds: string[]; calendarItems: NotdienstCalendarItem[]; }; export function NotdienstEntry({ targetYear, targetMonth, isLocked, requiredDaysTotal, initialSelectedDates, childrenIds, calendarItems, }: NotdienstEntryProps) { return ( ); }