JSFiddle - React, Tailwind, and code Playground

by Shanid

HTML

<div ng-repeat="country in countries">               
   <li>{{country.name}}</li>
</div>

JavaScript

var app = angular.module('myApp',[]);

app.countries = [
  {"name":"Afghanistan","id":"AFG","country-code":"004"},
  {"name":"Ă…land Islands","id":"ALA","country-code":"248"},
  {"name":"Albania","id":"ALB","country-code":"008"},
  {"name":"Algeria","id":"DZA","country-code":"012"}
]