commit task-ep.1.6.2-r1
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user