JSFiddle - React, Tailwind, and code Playground

by vural kaya

HTML

<!doctype html>
<html>
<body>
<div ng-repeat='d in data'>
    <div ng-show='d.durum'>
        <h1>{{d.title}}</h1>
        <p>{{d.mesaj}}</p>
    </div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
 
</body>
</html>

JavaScript

$scope.data = [{
    title: 'test 123',
    durum : true,
    mesaj : 'merhaba'
}]