Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

appfolio/react-big-calendar

This branch is 93 commits ahead of, 640 commits behind jquense/react-big-calendar:master.

Folders and files

NameName
Last commit message
Last commit date
May 3, 2021
Feb 7, 2022
Jan 7, 2017
Jun 14, 2017
Jul 12, 2021
May 22, 2017
Aug 25, 2017
Jun 15, 2017
Apr 15, 2016
Jan 14, 2016
Jan 7, 2017
Aug 22, 2015
May 24, 2017
Feb 10, 2022
Jun 9, 2016
May 2, 2017
Jan 7, 2017
Apr 26, 2017
Feb 27, 2024
Jul 5, 2017
Feb 10, 2022
Nov 18, 2021
Dec 22, 2020

Repository files navigation

react-big-calendar

An events calendar component built for React and made for modern browsers (read: IE10+) and uses flexbox over the classic tables-ception approach.

DEMO and Docs

Inspired by Full Calendar.

Use and Setup

npm install react-big-calendar --save

Include react-big-calendar/lib/css/react-big-calendar.css for styles.

Run examples locally

Localization and Date Formatting

react-big-calendar includes two options for handling the date formatting and culture localization, depending on your preference of DateTime libraries. You can use either the Moment.js or Globalize.js localizers.

Regardless of your choice, you must choose a localizer to use this library:

Moment.js

import BigCalendar from 'react-big-calendar';
import moment from 'moment';

BigCalendar.setLocalizer(
  BigCalendar.momentLocalizer(moment)
);

Globalize.js v0.1.1

import BigCalendar from 'react-big-calendar';
import globalize from 'globalize';

BigCalendar.setLocalizer(
  BigCalendar.globalizeLocalizer(globalize)
);