UNPKG

@san.devv/sandev-react-calendar

Version:

A **highly customizable React calendar component** designed for productivity apps, attendance tracking, and event management. It features **dynamic day/week views**, time overlays, and modal integrations — all built using **React, TypeScript, Bootstrap**,

10 lines (9 loc) 250 B
import { PropsWithChildren } from "react"; import { Event } from "../types"; type Props = { events: Event[]; setSelectedEvent: any; setShowEventModal: any; }; export declare const Calendar: React.FC<Props & PropsWithChildren>; export {};