From b83c082bf159e545862058f26b035d527fb3edfe Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <cwillisf@media.mit.edu> Date: Thu, 20 Sep 2018 14:11:34 -0700 Subject: [PATCH] Expose AppStateHOC component For use from `scratch-desktop` and maybe other places... --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index dfd32a399..237c1093d 100644 --- a/src/index.js +++ b/src/index.js @@ -1,4 +1,5 @@ import GUI from './containers/gui.jsx'; +import AppStateHOC from './lib/app-state-hoc.jsx'; import GuiReducer, {guiInitialState, guiMiddleware, initFullScreen, initPlayer} from './reducers/gui'; import LocalesReducer, {localesInitialState, initLocale} from './reducers/locales'; import {ScratchPaintReducer} from 'scratch-paint'; @@ -13,6 +14,7 @@ const guiReducers = { export { GUI as default, + AppStateHOC, setAppElement, guiReducers, guiInitialState, -- GitLab