I am searching for a way to extract Scheduler views into separate components. Instead of:
<Scheduler>
<DayView />
</Scheduler>
I want to be able to do:
<Scheduler>
<CustomDayView props={<props>} /> // returns `DayView` as top-most element under the hood
</Scheduler>