0.2.1 • Published 3 years ago

@thesis-ui/calendar v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Calendar component - Thesis UI

Installation

$ yarn add @thesis-ui/calendar
$ npm install @thesis-ui/calendar

Usage

import Calendar from '@thesis-ui/calendar';

const [date, setDate] = useState();

<Calendar
  date={date}
  mode="DATE"
  monthsNumber={2}
  onDateChange={setDate}
/>