25 lines
510 B
TypeScript
25 lines
510 B
TypeScript
import { MenuItem } from "@linagora/twake-mui";
|
|
import { CalendarEvent } from "../../features/Events/EventsTypes";
|
|
import { useI18n } from "twake-i18n";
|
|
|
|
export default function EventDuplication({
|
|
onClose,
|
|
event,
|
|
onOpenDuplicate,
|
|
}: {
|
|
onClose: Function;
|
|
event: CalendarEvent;
|
|
onOpenDuplicate?: () => void;
|
|
}) {
|
|
const { t } = useI18n();
|
|
return (
|
|
<MenuItem
|
|
onClick={() => {
|
|
onOpenDuplicate?.();
|
|
}}
|
|
>
|
|
{t("eventDuplication.duplicateEvent")}
|
|
</MenuItem>
|
|
);
|
|
}
|