JSFiddle - React, Tailwind, and code Playground

by dingen2010

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script>
    // Create a new module
    var app = angular.module("app", []);

    app.config(function($routeprovider) {
        $routeprovider.when('/', {
            templateUrl: "app.html",
            controller: "AppCtrl"
        })
            .when('/pizza', {
            template: "yum"
        })
    });

    app.controller("AppCtrl", function($scope) {
        $scope.model =  {
            message:"this is my app"
        }
    });
</script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/foundation/4.3.2/css/foundation.min.css">
<div ng-app="choreApp">
    <div ng-controller="ChoreCtrl">
        <kid done="logChore(chore)"></kid>
    </div>
</div>