JSFiddle - React, Tailwind, and code Playground

by skilesare

HTML

<body>
	  <!-- bind to the greeting controller, see ln.14 in JS -->
      <div>
		<!-- from $scope.greeting, see ln.15 in JS -->
        <h1 data-bind="text:greeting.greeting"></h1>
        <h3 data-bind="text:greting.happyThought">			
        </h3>
      </div>
  </body>

CoffeeScript

class Greeting
    constructor: (vm)->
        @viewModel = vm
        @greeting = "Good MorningStarshite!"
        @happyThought = "The Earth Says Hello."

class App
    constructor: ()->
        @greeting = new Greeting(@)
    runApp: ()=>
        ko.applyBindings(@,$('body')[0])