Files
frontend-component-footer/src/plugin-slots/FooterSlot/index.jsx
2025-04-24 13:53:20 -04:00

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;