JSFiddle - React, Tailwind, and code Playground

by lukempeters

HTML

<div class="users"></div>

JavaScript

$.ajax({
    type: "POST",
    url: 'http://localhost:8888/snipsave_version2/user/get_all_users',
    dataType: 'json',
    success: function(data){
        $('.users').append('asds');
    }
});