JSFiddle - React, Tailwind, and code Playground

by Derek Anderson

JavaScript

enyo.kind({
		name: "TestAjaxSource",
		kind: "enyo.AjaxSource",
});

enyo.kind({
    name: "TestModel",
    kind: "enyo.Model",
    defaultSource: "testajaxsource",
    defaults:{
        message: "hello"
    }
});

enyo.kind({
    name: "TestCollection",
    kind: "enyo.Collection",
    model: "TestModel",
    defaultSource: "testajaxsource",
});

enyo.store.addSources({testajaxsource: "TestAjaxSource"});