You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{FlowRouter}from'meteor/ostrio:flow-router-extra';// Import layout template statically as it will be used a lotimport'/imports/client/layout/layout.js';// Create index routeFlowRouter.route('/',{name: 'index',waitOn(){return[import('/imports/client/index/index.js'),import('/imports/client/sidebar/sidebar.html'),import('/imports/client/footer/footer.html')];},action(){this.render('layout','index',{sidebar: 'sidebar',footer: 'footer'});}});