JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://arshaw.com/js/fullcalendar-1.6.4/fullcalendar/fullcalendar.min.js"></script>
<link rel="stylesheet" href="http://arshaw.com/js/fullcalendar-1.6.4/fullcalendar/fullcalendar.css">
<link rel="stylesheet" href="http://arshaw.com/css/fullcalendar.css?5">
<div id="calendar"></div>

JavaScript

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next',
        center: 'title',
        right: 'today'
    },
    eventSources: [
    {
        events: [
            {
                title: 'Event 1',
                start: '2013-11-04'
            },
            {
                title: 'Event 2',
                start: '2013-11-25'
            }
            ],
        color: 'yellow',
        textColor: 'black'
    },
    {
        events: [
            {
                title: 'Event 3',
                start: '2013-11-11'
            },
            {
                title: 'Event 4',
                start: '2013-11-20'
            }
            ],
        color: 'blue',
        textColor: 'white'
    }
    ]
});