15 lines
347 B
JavaScript
15 lines
347 B
JavaScript
import React from 'react';
|
|
import { PluginSlot } from '@openedx/frontend-plugin-framework';
|
|
import Footer from '../../components/Footer';
|
|
|
|
const FooterSlot = () => (
|
|
<PluginSlot
|
|
id="org.openedx.frontend.layout.footer.v1"
|
|
idAliases={['footer_slot', 'footer_plugin_slot']}
|
|
>
|
|
<Footer />
|
|
</PluginSlot>
|
|
);
|
|
|
|
export default FooterSlot;
|