JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div></div>

JavaScript

$(function () {
    $('div').highcharts({
		chart: {
			backgroundColor: 'rgba(0,0,0,0)',
			plotBackgroundColor: null,
			plotBorderWidth: null,
			plotShadow: false,
			width: 500,
			height: 500,
			margin: [0, 0, 0, 0]
		},
		title: {
			text: null
		},
		plotOptions: {
			pie: {
				minSize: 0,
				size: 500,
				animation: {
					duration: true
				}
			}
		},
		series: [{
			type: 'pie',
			innerSize: 40,
			data: [1]
		}]
	});
});