JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/flot/flot/master/jquery.flot.js"></script>
<script src="https://raw.github.com/alexbardas/flot/a5da3049d3961d01c20ceb924044ae0238451ec6/jquery.flot.spline.js"></script>
<div id="place_holder"></div>

CSS

#place_holder {
    width: 500px;
    height: 150px;
}

JavaScript

$.plot(
    "#place_holder",
    [
        [[1, 13], [2, 20], [3, 33], [4, 13], [5, 8], [6, 26], [7, 30], [8, 12], [9, 10], [10, 15]]
    ],
    {
        series: {
             lines: {
                show: false
            },
             splines: {
                show: true,
                tension: 0.1, // float between 0 and 1, defaults to 0.5
                lineWidth: 1 // number, defaults to 2
            }
        }
    }
);