https://github.com/tanvirstreame/toodle-calendar
https://github.com/tanvirstreame/toodle-calendar
package reactjs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tanvirstreame/toodle-calendar
- Owner: tanvirstreame
- Created: 2022-01-30T22:03:47.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-01T18:57:33.000Z (over 3 years ago)
- Last Synced: 2023-09-20T13:22:58.130Z (over 1 year ago)
- Topics: package, reactjs
- Language: JavaScript
- Homepage:
- Size: 158 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toodle Calendar
## Table of Contents
* [Installation](#installation)
* [Example](#example)## Installation
To install, you can use [npm](https://npmjs.org/) or [yarn](https://yarnpkg.com):
$ npm install toodle-calendar
$ yarn add toodle-calendar## Example
Here is a simple example of toodle-calendar
```jsx
import Calendar from "toodle-calendar";const App = () => {
const handleOnChange = (value) => {
console.log(value);
}
return (
);
}export default App;
```