JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-init="things=[ { name: 'one', num: 1 }, { name: 'two', num: 2 } ]; currentThing = things[0]">
    <p>name: {{currentThing.name}} num: {{currentThing.num}}</p>
    <ul>
        <li ng-click="currentThing=thing" ng-repeat="thing in things">
            <pre>{{ currentThing | json }}</pre>
        </li>
    </ul>
</div>