Files
frontend-app-authoring/www/src/App.jsx
connorhaugh 8dea72de99 feat:problem editor
Co-authored-by: Farhaan Bukhsh <farhaan@opencraft.com>
Co-authored-by: Navin Karkera <navin@disroot.org>
Co-authored-by: Kaustav Banerjee <kaustav@opencraft.com>
2022-12-20 14:52:20 -05:00

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;