diff --git a/README.md b/README.md index de690e3..7744720 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # fullcalendar-reactwrapper -A react wrapper component for the the [FullCalendar](https://fullcalendar.io/) (a javascript event calendar). +A React wrapper component for the the [FullCalendar](https://fullcalendar.io/) (a JavaScript event calendar). ## Table of contents 1. [Installation](#installation) @@ -34,46 +34,47 @@ class ExampleComponent extends React.Component { constructor(props) { super(props); this.state = { - events:[ - { - title: 'All Day Event', - start: '2017-05-01' - }, - { - title: 'Long Event', - start: '2017-05-07', - end: '2017-05-10' - }, - { - id: 999, - title: 'Repeating Event', - start: '2017-05-09T16:00:00' - }, - { - id: 999, - title: 'Repeating Event', - start: '2017-05-16T16:00:00' - }, - { - title: 'Conference', - start: '2017-05-11', - end: '2017-05-13' - }, - { - title: 'Meeting', - start: '2017-05-12T10:30:00', - end: '2017-05-12T12:30:00' - }, - { - title: 'Birthday Party', - start: '2017-05-13T07:00:00' - }, - { - title: 'Click for Google', - url: 'http://google.com/', - start: '2017-05-28' - } - ], + events: + [ + { + title: 'All Day Event', + start: '2017-05-01' + }, + { + title: 'Long Event', + start: '2017-05-07', + end: '2017-05-10' + }, + { + id: 999, + title: 'Repeating Event', + start: '2017-05-09T16:00:00' + }, + { + id: 999, + title: 'Repeating Event', + start: '2017-05-16T16:00:00' + }, + { + title: 'Conference', + start: '2017-05-11', + end: '2017-05-13' + }, + { + title: 'Meeting', + start: '2017-05-12T10:30:00', + end: '2017-05-12T12:30:00' + }, + { + title: 'Birthday Party', + start: '2017-05-13T07:00:00' + }, + { + title: 'Click for Google', + url: 'http://google.com/', + start: '2017-05-28' + } + ], } }