JSFiddle - React, Tailwind, and code Playground

by Minko Gechev

HTML

<div ng-app>
    <input type="text" ng-model="input" />
    <ul>
        <li ng-repeat="item in input.split(',') | orderBy: 'toString()'" ng-bind="item"></li>
    </ul>
</div>