JSFiddle - React, Tailwind, and code Playground

HTML

<!doctype html>
 
<html lang="tr">
<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>
    #suruklenebilir{ width: 150px; height: 150px; padding: 0.5em; }
    </style>
    <script>
    $(function() {
        $( "#suruklenebilir" ).draggable();
    });
    </script>
</head>
<body>
 
<div id="suruklenebilir">
    <p>Beni sürükle</p>
</div>
 
 
</body>
</html>