import {Parser as HtmlToReactParser} from 'html-to-react' // Footer could be HTML, so we need to parse it. const Footer = () => { const content = '

PLACEHOLDER_FOOTER_CONTENT
'; const htmlToReactParser = new HtmlToReactParser(); const parsedContent = htmlToReactParser.parse(content); return ( parsedContent ) } export default Footer;