34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
import DashboardsContainer from '../containers/dashboard/DashboardsContainer.jsx';
|
|
import OrdersContainer from '../containers/orders/OrdersContainer.jsx';
|
|
import CoMarketContainer from '../containers/coMarket/CoMarketContainer.jsx';
|
|
import CartContainer from '../containers/cart/CartContainer.jsx';
|
|
import TermsContainer from '../containers/terms/TermsContainer.jsx';
|
|
import ProfileSettingsContainer from '../containers/profileSettings/ProfileSettingsContainer.jsx';
|
|
|
|
export const MainContainers = {
|
|
Dashboards: {
|
|
container: DashboardsContainer,
|
|
params: []
|
|
},
|
|
Orders: {
|
|
container: OrdersContainer,
|
|
params: ['idOrder']
|
|
},
|
|
CoMarket: {
|
|
container: CoMarketContainer,
|
|
params: ['idCommercialLead', 'idPackage']
|
|
},
|
|
Cart: {
|
|
container: CartContainer,
|
|
params: []
|
|
},
|
|
Terms: {
|
|
container: TermsContainer,
|
|
params: []
|
|
},
|
|
ProfileSettings: {
|
|
container: ProfileSettingsContainer,
|
|
params: []
|
|
}
|
|
};
|