12345678910111213141516171819202122232425 |
- // We only need to import the modules necessary for initial render
- import Page from './page';
- import Examination from './examination';
- import Exercise from './exercise';
- import My from './my';
- import Paper from './paper';
- import Preview from './preview';
- import Question from './question';
- import Sentence from './sentence';
- import Textbook from './textbook';
- import Course from './course';
- export default [
- ...Page,
- ...Examination,
- ...Exercise,
- ...My,
- ...Paper,
- ...Preview,
- ...Question,
- ...Sentence,
- ...Textbook,
- ...Course,
- ];
|