Skip to content

Instantly share code, notes, and snippets.

@bryanforbes
Created August 13, 2015 21:28
Embed
What would you like to do?
define(function (require) {
var B = require('./B');
return function () {
B();
};
});
define(function (require) {
var A = require('./A');
return function () {
A();
};
});
define(function (require, exports) {
var D = require('./D');
exports.default = function () {
D.default();
};
});
define(function (require, exports) {
var C = require('./C');
exports.default = function () {
C.default();
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment