https://github.com/boussadjra/spring-calendar
Full calendar based on React.js used to show events by day, week, month and year
https://github.com/boussadjra/spring-calendar
calendar javascript reactjs spring-calendar
Last synced: 2 months ago
JSON representation
Full calendar based on React.js used to show events by day, week, month and year
- Host: GitHub
- URL: https://github.com/boussadjra/spring-calendar
- Owner: boussadjra
- Created: 2020-01-19T20:48:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-02T03:53:05.000Z (about 1 year ago)
- Last Synced: 2025-04-12T19:13:23.325Z (2 months ago)
- Topics: calendar, javascript, reactjs, spring-calendar
- Language: JavaScript
- Homepage:
- Size: 3.06 MB
- Stars: 18
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Spring Calendar
It's a React based component which provides the functionality of a full-calendar that
shows daily events.## Installation
`npm install spring-calendar`
> For Vue.js developers please check this [`repository`](https://github.com/boussadjra/vue-spring-calendar)
## Usage```js
import React from 'react';
import SpringCalendar from 'spring-calendar';let events=[
{
title:'Event 1',
startDate:'2020-08-15 08:00',
endDate:'2020-08-15 10:00',
},
{
title:'Event 3',
startDate:'2020-08-15 09:00',
endDate:'2020-08-15 12:00',
}
]
const App =()=> ;
export default App
```## Demo
[React Spring Calendar demo](https://boussadjra.github.io/spring-calendar/)
[Boilerplate on codesandbox](https://codesandbox.io/s/great-mestorf-s3w2q?file=/src/App.js)
[Vue Spring Calendar demo](https://boussadjra.github.io/vue-spring-calendar/)