JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'spline'
        },
        title: {
            text: ''
        },
        plotOptions: {
            series: {
                lineWidth: 5,
                marker: {
                    fillColor: '#FFFFFF',
                    lineWidth: 2,
                    radius: 6,
                    lineColor: null // inherit from series
                }
            }
        },
        subtitle: {
            text: ''
        },
        xAxis: {
            type: 'datetime',
            dateTimeLabelFormats: { // don't display the dummy year
                month: '%e %b',
                year: '%b'
            }
        },
        yAxis: {
            title: {
                text: 'Ability Score (out of 100)',
                style: {
                    color: '#323A45',
                    fontWeight: 'bold'
                }
            },
            min: 0
        },
        tooltip: {
            formatter: function () {
                return '<b>' + this.series.name + '</b><br/>' + Highcharts.dateFormat('%e %b', this.x) + ': ' + this.y;
            }
        },

        series: [{
            name: 'Overall Ability',
            // Define the data points. All series have a dummy year
            // of 1970/71 in order to be compared on the same x axis. Note
            // that in JavaScript, months start at 0 for January, 1 for February etc.
            data: [
                [Date.UTC(2013, 07, 12), 50],
                [Date.UTC(2013, 08, 13), 57.9474605576],
                [Date.UTC(2013, 08, 14), 58.5667571154],
                [Date.UTC(2013, 08, 15), 69.0590308869], ]

        }, {
            name: 'Target',
            data: [
                [Date.UTC(2013, 07, 12), 80],
                [Date.UTC(2013, 08, 13), 80],
                [Date.UTC(2013, 08, 14), 80],
                [Date.UTC(2013, 08, 15), 80],
                /*
                       ...