New developer here, I am able to style the left and right sidebars, how do you extend this to the middle of the calendar? Thanks
groupRenderer = ({group}) => {
let bgColor = 'white'
if (group.root == true) {
bgColor = 'lightgray'
}
return (
<div style={{backgroundColor:bgColor}}></div>
)
}