scratch-paint/src/index.js

11 lines
289 B
JavaScript
Raw Normal View History

import PaintEditor from './containers/paint-editor.jsx';
2017-10-23 15:38:52 -04:00
import SelectionHOC from './containers/selection-hoc.jsx';
2017-08-22 18:20:47 -04:00
import ScratchPaintReducer from './reducers/scratch-paint-reducer';
2017-07-13 14:03:48 -04:00
2017-10-23 15:38:52 -04:00
const Wrapped = SelectionHOC(PaintEditor);
2017-09-11 14:23:30 -04:00
2017-08-22 18:20:47 -04:00
export {
2017-09-11 14:23:30 -04:00
Wrapped as default,
2017-08-22 18:20:47 -04:00
ScratchPaintReducer
};