Vulcan/packages/example-customization/lib/modules.js

21 lines
460 B
JavaScript
Raw Normal View History

2016-11-29 11:35:20 +09:00
/*
Let's import all our files here.
*/
// general business logic of this customization
import "./callbacks.js";
import "./emails.js";
import "./custom_fields.js";
import "./i18n.js";
import "./groups.js";
import "./fragments.js";
2016-11-29 11:35:20 +09:00
// custom components
2016-11-29 11:35:20 +09:00
import "./components/CustomLogo.jsx";
import "./components/CustomNewsletter.jsx";
import "./components/CustomPostsItem.jsx";
import "./components/MyCustomPage.jsx";
// custom routes
import "./routes.jsx";