JSFiddle - React, Tailwind, and code Playground

by StepBaro

JavaScript

function GetListItem() {
  
  var fullUrl1 = _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getbytitle('Deliverables')/items?$select=Program,To,Date,Approved,Notes";
  
  $("#deliverablesTable").DataTable({
    "ajax": fullUrl1
  });
  
}