0.1.2 • Published 6 years ago

@highpoint/react-fullcalendar v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

react-fullcalendar

This is a small React wrapper around fullcalendar jQuery plugin.

Read package.json for a reference on current peer dependencies. You'll need them in your project for this component to work properly and look properly.

installation

npm i @highpoint/react-fullcalendar

usage

const Calendar = require('..');
const { createElement: t } = require('react');
const { render } = require('react-dom');

const el = t(Calendar, {
  // any props passed go straight to jQuery plugin
  editable: true
});

render(el, document.querySelector('.app-container'));

Refer to experiment for a full example of this component working. You can run it with npm run experiment.