You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
393 B
13 lines
393 B
import { concat } from 'lodash'; |
|
import basicInformation from 'pages/basic.information/routes'; |
|
import accountManagement from 'pages/account.management/routes'; |
|
import publicityEducation from 'pages/publicity.education/routes'; |
|
import enterpriseMap from 'pages/enterprise.map/routes'; |
|
|
|
export default concat( |
|
[], |
|
enterpriseMap, |
|
publicityEducation, |
|
basicInformation, |
|
accountManagement, |
|
);
|
|
|