Vulcan/packages/example-customization/lib/modules.js
Claude Ayitey f3f309021a Semi-colon Updates
I doubt the app will ever break because of those semi-colon omissions but I added them, just to be safe.
2017-03-31 00:46:58 +00:00

20 lines
460 B
JavaScript

/*
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";
// custom components
import "./components/CustomLogo.jsx";
import "./components/CustomNewsletter.jsx";
import "./components/CustomPostsItem.jsx";
import "./components/MyCustomPage.jsx";
// custom routes
import "./routes.jsx";