@cocreate/industry
Version:
An Exhaustive business app template based on vanilla javascript similar to a website template featuring websites, specialty crm, email templates for creating complex business workspace/shell. Easily configured using HTML5 attributes and/or JavaScript API.
14 lines • 556 B
JavaScript
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(["./client"], function(CoCreateIndustry) {
return factory(CoCreateIndustry)
});
} else if (typeof module === 'object' && module.exports) {
const CoCreateIndustry = require("./server.js")
module.exports = factory(CoCreateIndustry);
} else {
root.returnExports = factory(root["./client.js"]);
}
}(typeof self !== 'undefined' ? self : this, function (CoCreateIndustry) {
return CoCreateIndustry;
}));