import React from 'react'; import classNames from 'classnames'; import styles from './index.less'; export interface GlobalFooterProps { links?: Array<{ key?: string; title: React.ReactNode; href: string; blankTarget?: boolean; }>; copyright?: React.ReactNode; style?: React.CSSProperties; className?: string; } const GlobalFooter: React.SFC = ({ className, links, copyright }) => { const clsString = classNames(styles.globalFooter, className); return ( ); }; export default GlobalFooter;