Skip to content

Commit

Permalink
Re-export constants from reducer
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Peveler <matt@popsql.com>
  • Loading branch information
MasterOdin authored Dec 27, 2023
1 parent c4e9bed commit d4063b3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
import LoadingBarContainer, { LoadingBar } from './loading_bar'
import loadingBarMiddleware from './loading_bar_middleware'
import {
DEFAULT_SCOPE,
HIDE,
hideLoading,
loadingBarReducer,
RESET,
resetLoading,
SHOW,
showLoading,
} from './loading_bar_ducks'
import ImmutableLoadingBar from './immutable'

export {
DEFAULT_SCOPE,
HIDE,
hideLoading,
ImmutableLoadingBar,
LoadingBar,
loadingBarMiddleware,
loadingBarReducer,
RESET,
resetLoading,
SHOW,
showLoading,
}
export default LoadingBarContainer

0 comments on commit d4063b3

Please sign in to comment.