JSFiddle - React, Tailwind, and code Playground

by trivender

HTML

<div ng-app="" ng-controller="controller"> 
<input ng-model='id'></input>
<input type='button' value='submit' ng-click="getFeedback()">
<ul>
	<li></li>
</ul>
</div>

JavaScript

function controller($scope) {
$scope.feedbackdata = {
    "181": [{"feedback":"like","comment":"This is nice"},{"feedback":"like","comment":"cool"}],
    "182": [{"feedback":"like","comment":"very good"},{"feedback":"dislike","comment":"bad"}]};
}