@react-simple-component/calendar
v0.0.2
Published
A Simple React Calendar Panel Component
Downloads
4
Readme
react-simple-component-calendar
English | 中文
A simple calendar component build for react. Simple style, simple use, & powerless.
Usage
npm install --save @react-simple-component/calendar
<Calendar
list={[
{
className: "active",
time: 1560787200000
// & every what fuck you want set on date element
},
{
className: "active",
time: 1553881332850
}
]}
now={new Date().valueOf()}
onClick={(date: Date, item: ListItem): void => {
console.log(date, item);
}}
/>
Documentation
| Prop | Type | Description |
| :------ | :--------- | :------------------------------------------------------------- |
| list | Array
| Every props you what to apply to button element |
| now | String
| Timestamp which you what to mark today (will border highlight) |
| onClick | Function
| When your click date element will trigger |