I'm using React Big Calendar for calendar purposes.
<BigCalendar
selectable
events={this.state.events}
step={60}
defaultDate={new Date()}
localizer={localizer}
dayPropGetter={this.dayStyleGetter}
onSelectSlot = {this.handleSelect}
eventPropGetter={(this.eventStyleGetter)}/>
This is my Component. Events are not showing in month view when the default calendar is loaded. I know one reason for that. My events which are in state is empty, so the calendar is not showing any events in month view.
Then if I provide any static events to the state, can I get those in month view or not?