UNPKG

desmy-react

Version:

Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.

10 lines (9 loc) 244 B
import { default as React } from 'react'; interface MonthsProps { currentMonth: Date; onSelectMonth: (month: number) => void; minDate?: Date; maxDate?: Date; } declare const Months: React.FC<MonthsProps>; export default Months;