Skip to content

Commit

Permalink
fix: add default export for edx footer
Browse files Browse the repository at this point in the history
  • Loading branch information
leangseu-edx committed Mar 3, 2023
1 parent 4f578c8 commit 49751e2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
export { default as Footer, EVENT_NAMES } from './components/Footer';
export { default as messages } from './i18n/index';
import Footer, { EVENT_NAMES } from './components/Footer';
import messages from './i18n/index';

// preserving sub export footer to match with all of v5 release.
export { Footer, messages, EVENT_NAMES };
export default Footer;

0 comments on commit 49751e2

Please sign in to comment.