JSFiddle - React, Tailwind, and code Playground

by rogeriolino

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<div class="container" ng-app>
        
      <label>Name:</label>
      <input type="text" ng-model="yourName" placeholder="Enter a name here" class="form-control" />
      <hr/>
      <h1>Hello {{yourName}}!</h1>

</div>

CSS

body {
    padding: 2em;
}