forked from tonyhb/redux-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export the MASS_UPDATE_UI_STATE, UPDATE_UI_STATE, and SET_DEFAULT_UI_…
…STATE action types from the main library entry point. Fix a few references to the old package name.
- Loading branch information
1 parent
b3ffd22
commit de0bc87
Showing
4 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
'use strict'; | ||
|
||
import ui from './ui'; | ||
import reducer from './action-reducer'; | ||
|
||
export default ui; | ||
export { reducer }; | ||
export { default } from './ui' | ||
export { default as reducer, MASS_UPDATE_UI_STATE, UPDATE_UI_STATE, SET_DEFAULT_UI_STATE } from './action-reducer' |