UNPKG

@talend/react-cmf

Version:

A framework built on top of best react libraries

16 lines 703 B
/** * The mock is in the src folder and there is reason for that * In the past without this we have added mocked states to other CMF libraries * and when we have let the state structure evolved, tests on those libs were still passing. * We believe they embed something that they are not responsible for. * * So mock are in the src folder because they are part of the library. * But they are not referenced in the index.js so they will not be in your build. * You have to import the mock from the complete path, ie: * * ```import mock from 'react-cmf/lib/mock';``` */ import store from './store'; import Provider from './provider'; export { Provider, store }; //# sourceMappingURL=index.js.map