JSFiddle - React, Tailwind, and code Playground
HTML
<html ng-app>
<head>
</head>
<body>
<div ng-controller="angularJs">
<ul>
<li ng-repeat='kisi in kisiler'>{{ kisi.isim }}</li>
</ul>
<input type="text" ng-model="isim"/>
<button ng-click="ekle()">ekle</button>
</div>
</body>
</html>
JavaScript
function angularJs($scope){
$scope.kisiler = [{isim:'ahmet',isim:'mehmet'}];
$scope.ekle = function(){
$scope.kisiler.push({isim:$scope.isim});
$scope.isim = '';
}
}