JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://igniteui.com/js/modernizr.min.js"></script>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
<script src="https://cdn-na.infragistics.com/igniteui/latest/js/infragistics.core.js"></script>
<script src="https://cdn-na.infragistics.com/igniteui/latest/js/infragistics.lob.js"></script>
<script src="https://igniteui.com/data-files/adventureworks.min.js"></script>
<link href="https://cdn-na.infragistics.com/igniteui/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet"></link>
<link href="https://cdn-na.infragistics.com/igniteui/latest/css/structure/infragistics.css" rel="stylesheet"></link>

<table id="grid"></table>

JavaScript

$(function () {
			$("#grid").igGrid({
				autoGenerateColumns: false,
				renderCheckboxes: true,
				width: "100%",
				height: "500px",
				columns: [
					{ headerText: "Product Name", key: "Name", dataType: "string", width: "20%" },
					{ headerText: "Product Number", key: "ProductNumber", dataType: "string", width: "20%" },
					{ headerText: "Make Flag", key: "MakeFlag", dataType: "bool", width: "10%" },
					{ headerText: "Reorder Point", key: "ReorderPoint", dataType: "number", width: "10%" },
					{ headerText: "Sell Start Date", key: "SellStartDate", dataType: "date", width: "15%" },
					{ headerText: "Modified Date", key: "ModifiedDate", dataType: "date", width: "15%" },
				],
				dataSource: adventureWorks.slice(0, 100),
				features: [
					{
						name: "Resizing"
					},
					{
						name: "ColumnMoving",
						columnMovingDialogContainment: "window"
					},
					{
						name: "Hiding"
					}
				]
			});
		});