react-rbx-calendar

0.4.0 • Public • Published

react-rbx-calendar

developed by Paul Farcasanu

Getting Started

Install the package to get started

npm install react-rbx-calendar

Usage

import Calendar from 'react-rbx-calendar';

const items = [
  {
    key: 0,
    title: 'Event 1',
    body: 'This event is an event that is happening!',
    date: new Date(),
  },
  {
    key: 1,
    title: 'Event 2',
    body: 'This event is an event that is happening also.',
    date: new Date(),
  },
  {
    key: 2,
    title: 'Event 3',
    body: 'This event is an event that is happening as well.',
    date: new Date(),
  },
];

const App = () => <Calendar items={items}>;

export default App;

Package Sidebar

Install

npm i react-rbx-calendar

Weekly Downloads

0

Version

0.4.0

License

none

Unpacked Size

4.72 kB

Total Files

5

Last publish

Collaborators

  • pfarcasanu