JSFiddle - React, Tailwind, and code Playground

by Ryan Duffy

JavaScript

enyo.kind({
  name: 'ex.App',
  components: [
    {name: 'img', kind: "moon.Image", sizing: "cover", style: "width:200px; height:200px"}
  ],
  create: function () {
    this.inherited(arguments);
	this.$.img.set('src', "http://enyojs.com/img/[email protected]");
  }
});

new ex.App().renderInto(document.body);