JSFiddle - React, Tailwind, and code Playground

by vforvector

HTML

<div ng-app="">
	<div ng-controller="FirstCtrl">
		<h1>{{data.message}}</h1>
		<div class="{{data.message}}">
			Wrap me a foundation component		
		</div>
		
	</div>
</div>

JavaScript

function FirstCtrl($scope){
	$scope.data =  {message: "button"};
}