JSFiddle - React, Tailwind, and code Playground

HTML

<html>
    <head>
        <meta charset="utf-8">
        <title>Słodziaki.</title>
        <script>

        </script>
    </head>
    <body>
        <div class="slodziaki">
            Reddit api test.
        </div>
    </body>
</html>S

JavaScript

$(document).ready(function(){
                $.getJSON("api.reddit.com/r/aww/.json", function(json){
                   $(".slodziaki").append("<p>Permalink</p>"+ json.data.children.data[0].permalink)'         
                });
        });