@capillarytech/creatives-library 8.0.1 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/routes.js +15 -15
package/package.json
CHANGED
package/routes.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import withReactRouterV3Compatibility from './hoc/withReactRouterV3Compatibility';
|
|
2
|
-
import Dashboard from '
|
|
3
|
-
import SmsCreate from '
|
|
4
|
-
import SmsEdit from '
|
|
5
|
-
import Templates from '
|
|
6
|
-
import Gallary from '
|
|
7
|
-
import WeChatMapTemplate from '
|
|
8
|
-
import WeChatRichmediaCreate from '
|
|
9
|
-
import WeChatRichmediaEdit from '
|
|
10
|
-
import Email from '
|
|
11
|
-
import Ebill from '
|
|
12
|
-
import MobilePushCreate from '
|
|
13
|
-
import MobilePushEdit from '
|
|
14
|
-
import LineCreate from '
|
|
2
|
+
import Dashboard from './containers/Dashboard';
|
|
3
|
+
import SmsCreate from './containers/Sms/Create';
|
|
4
|
+
import SmsEdit from './containers/Sms/Edit';
|
|
5
|
+
import Templates from './containers/Templates';
|
|
6
|
+
import Gallary from './containers/Assets/Gallery';
|
|
7
|
+
import WeChatMapTemplate from './containers/WeChat/MapTemplates';
|
|
8
|
+
import WeChatRichmediaCreate from './containers/WeChat/RichmediaTemplates/Create';
|
|
9
|
+
import WeChatRichmediaEdit from './containers/WeChat/RichmediaTemplates/Edit';
|
|
10
|
+
import Email from './containers/Email';
|
|
11
|
+
import Ebill from './containers/Ebill';
|
|
12
|
+
import MobilePushCreate from './containers/MobilePush/Create';
|
|
13
|
+
import MobilePushEdit from './containers/MobilePush/Edit';
|
|
14
|
+
import LineCreate from './containers/Line/Create';
|
|
15
15
|
import SomethingWentWrong from '@capillarytech/cap-ui-library/CapSomethingWentWrong';
|
|
16
|
-
import NotFoundPage from '
|
|
17
|
-
import TemplatesV2 from '
|
|
16
|
+
import NotFoundPage from './containers/NotFoundPage';
|
|
17
|
+
import TemplatesV2 from './v2Containers/TemplatesV2';
|
|
18
18
|
import { updateCharCount } from './utils/smsCharCountV2';
|
|
19
19
|
|
|
20
20
|
const routes = [
|