Skip to content

Commit

Permalink
Clean up re-exports from projects/ and view/
Browse files Browse the repository at this point in the history
  • Loading branch information
ptgolden committed Apr 14, 2021
1 parent 242fc9a commit 3660a96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/projects/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,4 @@ export {
getSearchTranscripts
} from './utils'

import * as actions from './actions'

export { actions }
export * as actions from './actions'
11 changes: 5 additions & 6 deletions src/view/index.ts
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 3660a96

Please sign in to comment.