import React, { memo } from 'react'; import { IFooterConfig } from './schema'; const Footer = memo((props: IFooterConfig) => { const { bgColor, text, color, align, fontSize, height } = props; return ( ); }); export default Footer;