index.js 550 B

12345678910111213141516171819202122232425
  1. // We only need to import the modules necessary for initial render
  2. import Page from './page';
  3. import Examination from './examination';
  4. import Exercise from './exercise';
  5. import My from './my';
  6. import Paper from './paper';
  7. import Preview from './preview';
  8. import Question from './question';
  9. import Sentence from './sentence';
  10. import Textbook from './textbook';
  11. import Course from './course';
  12. export default [
  13. ...Page,
  14. ...Examination,
  15. ...Exercise,
  16. ...My,
  17. ...Paper,
  18. ...Preview,
  19. ...Question,
  20. ...Sentence,
  21. ...Textbook,
  22. ...Course,
  23. ];