From 3660a96913b899c6bd5d850978f655c7c8175e5a Mon Sep 17 00:00:00 2001 From: Patrick Golden Date: Tue, 13 Apr 2021 21:06:04 -0400 Subject: [PATCH] Clean up re-exports from projects/ and view/ --- src/projects/index.ts | 4 +--- src/view/index.ts | 11 +++++------ 2 files changed, 6 insertions(+), 9 deletions(-) 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'