JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="//cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css">
<table class="table table-bordered">
  <thead>
    <th>Nome</th>
    <th>Data</th>
    <th>Tipo</th>
    <th>RG</th>
  </thead>
</table>

JavaScript

$(document).ready(function() {

  var json = '[ {  "Nome": "Felipe",  "Data": "null",  "Tipo": "Normal",  "RG": "123456798"}, {  "Nome": "Felipe2", "Data": "null", "Tipo": "Normal", "RG": "123456798"}, { "Nome": "Felipe3", "Data": "null", "Tipo": "Normal", "RG": "123456798"}]';

  $('.table').DataTable({
  "ajax": json,
  });
  
});