You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
``import React, { Component } from 'react';
import BigCalendar from 'react-big-calendar';
import moment from 'moment';
import 'react-big-calendar/lib/css/react-big-calendar.css';
import './FullCalendar.css';
import events from './events';
export default [
{ title: 'DTS STARTS', start: new Date(2020, 8, 20), end: new Date(2020, 8, 23), bgColor: '#D9D9D9' } ];
above is the event data
and below is fullcalendar.js
``import React, { Component } from 'react';
import BigCalendar from 'react-big-calendar';
import moment from 'moment';
import 'react-big-calendar/lib/css/react-big-calendar.css';
import './FullCalendar.css';
import events from './events';
BigCalendar.momentLocalizer(moment);
class FullCalendar extends Component {
render() {
const views = ['month', 'week', 'day'];
const messages = {
previous: 'back',
next: 'next'
};
const eventsdata=events;
}
}
``
export default FullCalendar;
https://snipboard.io/kMm2EC.jpg
The text was updated successfully, but these errors were encountered: