index.js 420 Bytes
import Order from './order';
import Common from './common';
import List from './list';
import Product from './product';
import Home from './home';
import Passport from './passport';
import Address from './address';
import Notice from './notice';
import Category from './category';

export default [
  ...Order,
  ...Common,
  ...List,
  ...Product,
  ...Home,
  ...Passport,
  ...Address,
  ...Notice,
  ...Category,
];