Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #132 from MasterOdin/patch-1
Browse files Browse the repository at this point in the history
Re-export constants from reducer
  • Loading branch information
mironov authored Dec 27, 2023
2 parents 8818099 + d4063b3 commit 9ab7792
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 9ab7792

Please sign in to comment.