Co-authored-by: Farhaan Bukhsh <farhaan@opencraft.com> Co-authored-by: Navin Karkera <navin@disroot.org> Co-authored-by: Kaustav Banerjee <kaustav@opencraft.com>
14 lines
336 B
JavaScript
14 lines
336 B
JavaScript
import { Provider } from 'react-redux';
|
|
// eslint-disable-next-line
|
|
import store from '@edx/frontend-lib-content-components/editors/data/store';
|
|
import Gallery from './Gallery';
|
|
|
|
export const App = () => (
|
|
<Provider store={store}>
|
|
<div className="editor-gallery">
|
|
<Gallery />
|
|
</div>
|
|
</Provider>
|
|
);
|
|
export default App;
|