// We only need to import the modules necessary for initial render

import Page from './page';
import user from './user';
import subject from './subject';
import course from './course';
import student from './student';
import interaction from './interaction';
import textbook from './textbook';
import ready from './ready';
import setting from './setting';
import show from './show';
import System from './system';

export default [...Page, ...user, ...subject, ...course, ...student, ...interaction, ...textbook, ...ready, ...setting, ...show, ...System];