Files
alla-allaos-fullstack/src/features/crm/calendar/upstream-big-calendar/components/dialogs/add-event-dialog.tsx
2026-07-13 22:29:11 +07:00

19 lines
382 B
TypeScript

"use client";
import Link from "next/link";
import type { ReactNode } from "react";
interface IProps {
children: ReactNode;
startDate?: Date;
startTime?: { hour: number; minute: number };
}
export function AddEventDialog({ children }: IProps) {
return (
<Link href="/dashboard/crm/activities" aria-label="Create related Activity">
{children}
</Link>
);
}