Footer.js 383 B

12345678910111213
  1. import {Parser as HtmlToReactParser} from 'html-to-react'
  2. // Footer could be HTML, so we need to parse it.
  3. const Footer = () => {
  4. const content = '<div align="right"><br/>PLACEHOLDER_FOOTER_CONTENT</div>';
  5. const htmlToReactParser = new HtmlToReactParser();
  6. const parsedContent = htmlToReactParser.parse(content);
  7. return (
  8. parsedContent
  9. )
  10. }
  11. export default Footer;