Editor.js 207 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import React from 'react'; import ImageEditorContainer from '../container/editor/ImageEditorContainer'; const Editor = () => { return ( <ImageEditorContainer /> ); }; export default Editor;