commit task-ep.1.6.2-r1

This commit is contained in:
phaichayon
2026-07-13 22:29:11 +07:00
parent 7d7548ebd4
commit bb5a910b88
49 changed files with 4663 additions and 361 deletions

View File

@@ -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>
);
}