@logo-rn/logo-scheduler
v0.2.1
Published
<LogoScheduler/> is a calendar component to follow events and edit them.
Downloads
7
Readme
@logo-rn/logo-scheduler
is a calendar component to follow events and edit them.
Installation
Install the component:
npm i @logo-rn/logo-scheduler -s
Usage
Once installed, import the component in your application:
import {LogoScheduler} from '@logo-rn/logo-scheduler';
const timelineEvents = [
{
start: `${new Date()} 09:20:00`,
end: `${new Date()} 12:00:00`,
title: 'Event Title',
summary: 'Event for LogoScheduler'
}
]
<LogoScheduler
events={timelineEvents}
id="Scheduler" />