We export all our reducers from @deephaven/redux:
|
export { default as reducers } from './reducers'; |
However, in the @deephaven/dashboard and @deephaven/dashboard-core-plugins packages, we have reducers that we register with the store that we do not export from the package:
|
import reducers from './reducers'; |
|
import reducers from './reducers'; |
For integrating with other applications that may have their own store, we should export all our reducers.
We export all our reducers from
@deephaven/redux:web-client-ui/packages/redux/src/index.ts
Line 5 in c24d191
However, in the
@deephaven/dashboardand@deephaven/dashboard-core-pluginspackages, we have reducers that we register with the store that we do not export from the package:web-client-ui/packages/dashboard/src/redux/index.ts
Line 2 in c24d191
web-client-ui/packages/dashboard-core-plugins/src/redux/index.ts
Line 2 in c24d191
For integrating with other applications that may have their own store, we should export all our reducers.