JSFiddle - React, Tailwind, and code Playground

HTML

<div data-ng-app data-ng-controller="myCtrl">
    <div data-ng-repeat="value in faq">
        <div data-ng-repeat="(question,answer) in value">
            {{question}} - {{answer}}
        </div>
    </div>
</div>

JavaScript

function myCtrl($scope){
$scope.faq = [
        {"Question 1": "Answer1"},
        {"Question 2": "Answer2"}
    ];
}