JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>

JavaScript

$(function () {
            $('#container').highcharts({
                chart: {
                    type: 'bar'
                },
                title: {
                    text: 'Leases with 2014 Extension Provisions and No Payment'
                },
                xAxis: {
                    categories: ['Anadarko', 'Deleward Basin', 'Midland Basin','Mississippian','North Texas', 'Rockies','Southern']
                },
                yAxis: {
                    title: {
                        text: 'Number of Potential Errors'
                    }
                },
                series: [{
                    name: 'Error',
                    data: [47, 161, 100, 201, 1, 324, 462]
                }, {
                    name: 'No Error',
                    data: [276, 765, 9162, 24333, 245, 10381, 5038]
                }]
            });
        });