JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://javascript.daypilot.org/sandbox/js/daypilot-all.min.js?v=1029"></script>
<div class="container">
    <div id="dps"></div>
    <div id="dpc"></div>
</div>
<div id="log">
    
</div>

CSS

.container{
    height:200px;
}
#log{
    margin-top:200px
}

JavaScript

$(function(){
    dps = new DayPilot.Scheduler("dps");
    dps.resources = [];
    for(var i = 0 ; i < 5 ; i++){
        dps.resources.push({name:"Viktor"+i, id:"Viktor"+i});
    }
    dps.timeHeaders = [ 
        {groupBy: 'Month', format: 'MMMM yyyy'}, 
        {groupBy: 'Week'},
        {groupBy: 'Day'},
        {groupBy: 'Hour', format:"HH:mm"}
    ];
    $("#log").append("<div>"+new Date(1426842000000)+"</div>")
    $("#log").append("<div>"+new Date(1426845600000)+"</div>")
    dps.events.list = [{
        start:new DayPilot.Date(1426842000000),
        end:new DayPilot.Date(1426845600000),
        id:"123",
        text:"test",
        resource:"Viktor2"
    },
    {
        start:new DayPilot.Date(new Date(1426842000000), true),
        end:new DayPilot.Date(new Date(1426845600000), true),
        id:"123",
        text:"test",
        resource:"Viktor2"
    },{
        start:new DayPilot.Date(new Date(1426842000000), false),
        end:new DayPilot.Date(new Date(1426845600000), false),
        id:"123",
        text:"test",
        resource:"Viktor2"
    }];
    dps.startDate = new DayPilot.Date("2015-03-20");
    dps.days = 1;    
    dps.heightSpec = "Fixed";//Parent100Pct
    dps.height=300
    dps.cellWidthSpec = 'Auto';
    dps.rowHeaderWidthAutoFit = false;
    dps.init();
})