JSFiddle - React, Tailwind, and code Playground

JavaScript

var kind = require('enyo/kind'),
    Application = require('enyo/Application'),
    Button = require('enyo/Button'),
    ready = require('enyo/ready');
    
ready(function() {
      
  var MyKind = kind({
  		name: 'MyKind',
      components: [
      	{ content: "Welcome to Enyo!" },
        { kind: Button, content: 'Motha Focka' }
      ]
  });
  
  new Application({view: MyKind});
});