JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Test</title>

    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
          integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
    <link rel="stylesheet" type="text/css"
          href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.bootstrap4.min.css">
    <style>html {
        position: relative;
        min-height: 100%
    }

    body {
        margin-bottom: 40px
    }

    body > .container {
        padding: 60px 0 0
    }

    table {
        border-spacing: 0;
        margin: 0 auto;
        width: 100%
    }</style>
</head>
<body itemscope itemtype="https://schema.org/WebPage">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-primary">
    <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
            data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false"
            aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
    <a class="navbar-brand" href="#">Test</a>
    <div class="collapse navbar-collapse" id="navbarCollapse">
        <ul class="navbar-nav mr-auto">
            <li class="nav-item"><a class="nav-link" href="#">Home<span class="sr-only"></span></a></li>
        </ul>
    </div>
</nav>

<div class="container">

    <table id="summoner-names" class="table table-bordered">
        <thead>
        <tr>
            <th class="all">Items</th>
            <th class="all">Col</th>
            <th class="min-tablet-p">Col</th>
            <th class="min-tablet-p">Col</th>
            <th class="min-tablet-p">Col</th>
        </tr>
        </thead>
        <tbody>
        <tr>
            <td>Item</td>
            <td>84</td>
...