JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="myApp" ng-controller="Example">


<label ng-repeat="item in items">
  <input type="radio" name="test" ng-model="test" value="{{item.name}}" />{{item.name}}
</label>
<br>
 <a class="undo" ng-click="test1 = false">Clear</a>

</div>

JavaScript

angular.module("myApp", []).controller("Example", ["$scope", function($scope) {
    $scope.items = [
    	{name: 'one'},
      {name: 'two'},
      {name: 'three'},
      {name: 'four'},
      {name: 'five'},
      ]
}]);