@capillarytech/creatives-library 2.0.35 → 2.0.36
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/index.js +7 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -41,6 +41,10 @@ import lineEditReducer from './containers/Line/Edit/reducer';
|
|
|
41
41
|
import lineEditSaga from './containers/Line/Edit/sagas';
|
|
42
42
|
import TemplatesV2 from './containers/TemplatesV2/index';
|
|
43
43
|
|
|
44
|
+
import CreativesContainer from './containers/CreativesContainer';
|
|
45
|
+
import CreativesContainerReducer from './containers/CreativesContainer/reducer';
|
|
46
|
+
|
|
47
|
+
|
|
44
48
|
export {default as Ebill} from './containers/Ebill';
|
|
45
49
|
export {default as EbillReducer} from './containers/Ebill/reducer';
|
|
46
50
|
export {default as EbillSaga} from './containers/Ebill/sagas';
|
|
@@ -64,7 +68,8 @@ export {default as TagListReducer} from './containers/TagList/reducer';
|
|
|
64
68
|
export {default as TemplatePreview} from './components/TemplatePreview';
|
|
65
69
|
export {default as EmailPreview} from './components/EmailPreview';
|
|
66
70
|
export {default as EmailPreviewV2} from './components/EmailPreviewV2';
|
|
67
|
-
|
|
71
|
+
|
|
72
|
+
CreativesContainer.CreativesContainerReducer = CreativesContainerReducer;
|
|
68
73
|
|
|
69
74
|
export { CapContainer,
|
|
70
75
|
TemplatesContainer,
|
|
@@ -82,4 +87,5 @@ export { CapContainer,
|
|
|
82
87
|
MobilePushCreateContainer,
|
|
83
88
|
MobilePushEditContainer,
|
|
84
89
|
TemplatesV2Container,
|
|
90
|
+
CreativesContainer,
|
|
85
91
|
};
|