diff --git a/src/projects/index.ts b/src/projects/index.ts index 41f8cb1..1085f49 100644 --- a/src/projects/index.ts +++ b/src/projects/index.ts @@ -16,6 +16,4 @@ export { getSearchTranscripts } from './utils' -import * as actions from './actions' - -export { actions } +export * as actions from './actions' diff --git a/src/view/index.ts b/src/view/index.ts index b3a7005..39f0739 100644 --- a/src/view/index.ts +++ b/src/view/index.ts @@ -1,12 +1,11 @@ -import * as actions from './actions' -import reducer from './reducer' +export * as actions from './actions' -import { useView, useViewProject, useViewOptions } from './hooks' +export { + default as reducer +} from './reducer' export { - actions, - reducer, useView, useViewProject, useViewOptions -} +} from './hooks'