index.js 304 Bytes
import Order from './order';
import Common from './common';
import List from './list';
import Product from './product';
import Home from './home';
import Address from './address';
import Notice from './notice';

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