JSFiddle - React, Tailwind, and code Playground

by icntfan

HTML

<!doctype html>
 
<html lang="en">
<head>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
    <style>
    #boyutlandir { width: 150px; height: 150px; padding: 0.5em; }
    #boyutlandir h3 { text-align: center; margin: 0; }
    </style>
    <script>
    $(function() {
        $( "#boyutlandir" ).resizable();
    });
    </script>
</head>
<body>
 
<div id="boyutlandir" class="ui-widget-content">
    <h3 class="ui-widget-header">Yeniden boyutlandirilabilir</h3>
</div>
 
 
</body>
</html>