index.js 557 B

123456789101112131415
  1. // We only need to import the modules necessary for initial render
  2. import Page from './page';
  3. import user from './user';
  4. import subject from './subject';
  5. import course from './course';
  6. import student from './student';
  7. import interaction from './interaction';
  8. import textbook from './textbook';
  9. import ready from './ready';
  10. import setting from './setting';
  11. import show from './show';
  12. import System from './system';
  13. export default [...Page, ...user, ...subject, ...course, ...student, ...interaction, ...textbook, ...ready, ...setting, ...show, ...System];