An open API service indexing awesome lists of open source software.

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

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/)