index.js 215 B

1234567
  1. // We only need to import the modules necessary for initial render
  2. import Page from './page';
  3. import Product from './product';
  4. import Textbook from './textbook';
  5. export default [...Page, ...Product, ...Textbook];