JSFiddle - React, Tailwind, and code Playground

by Andres Cisneros

HTML

<div ng-app="app" ng-controller="MainCtrl">
  <div ng-repeat="label in CannedResponses">
  
  </div>
</div>

JavaScript

angular.module('app', [])
  .controller('MainCtrl', function($scope) {
    $scope.CannedResponses = [{
      label: 'Selet a Canned Response',
      value: 0
    }, {
      label: 'Hi there whats up',
      value: 1
    }, {
      label: 'Here is another response',
      value: 2
    }, {
      label: 'Why not select this one?',
      value: 3
    }];

  });