JSFiddle - React, Tailwind, and code Playground

by Ajay Bhosale

HTML

<!DOCTYPE html>
<html>
<head>
    <title>Basic Search Form</title>
</head>
<body>
    <div id="searchForm">
        <input ng-model="query"/>
        <p>You entered : <b>{{query}}</b></p>
    </div>
</body>
</html>
<script>
    angular.bootstrap(document.getElementById('searchForm'), []);
</script>