JSFiddle - React, Tailwind, and code Playground

HTML

<body ng-app>
    <span>Insert your name:</span>
    <input type="text" ng-model="user.name" />
    <span>Insert your middle name:</span>
    <input type="text" ng-model="user.middlename" />
    <span>Insert your last name:</span>
    <input type="text" ng-model="user.lastname" />
    <p>{{user.name}} {{user.middlename}} {{user.lastname}}</p>
</body>