Skip to content

Full calendar based on React.js used to show events by day, week, month and year

Notifications You must be signed in to change notification settings

boussadjra/spring-calendar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Usage

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 =()=> <SpringCalendar locale="en" events={events} color="#002651" defaultType="year"/>;
export default App

Demo

React Spring Calendar demo

Boilerplate on codesandbox

Vue Spring Calendar demo

About

Full calendar based on React.js used to show events by day, week, month and year

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published