Hi, I use your big-calendar but I have a problem with how it is displayed. I made an attachement with the screenshot

This is how I use it:
var BigCalendar = require('react-big-calendar');
require('react-big-calendar/lib/css/react-big-calendar.css');
render: function () {
return (
<Layout active="plan" title="Planning">
<div className="content-app fixed-header">
<div className="app-header">
<button className="btn btn-md btn-info" onClick={this.copyWeek}>
Copy week
</button>
<button className="btn btn-md btn-success pull-right" onClick={this.openModal}>
New course
</button>
</div>
<div className="app-body">
<div className="box">
<BigCalendar
events={this.events}
defaultDate={new Date()}
defaultView='week'
views={[]}
onSelectSlot={(this.slotSelected)}
onSelectEvent={(this.eventSelected)}
/>
</div>
</div>
</div>
</Layout>
}
But if I remove the defaultView and views attribute, and then choose week the table looks fine.

Hi, I use your big-calendar but I have a problem with how it is displayed. I made an attachement with the screenshot

This is how I use it:
But if I remove the defaultView and views attribute, and then choose week the table looks fine.
