Open ahmeterenodaci opened 1 month ago
Custom Header prop does not have a type definition. Currently, the prop accepts any type.
customHeader?: any;
The type should have a proper definition.
customHeader?: (props: CalendarHeaderProps) => React.ReactNode;
Description
Custom Header prop does not have a type definition. Currently, the prop accepts any type.
Expected Behavior
The type should have a proper definition.