import './index.less' import classNames from 'classnames'; const GlobalFooter = { props: ["className", "links", "copyright"], render(){ const {className,links,copyright} = this; const cls = classNames('globalFooter', className); return (
{links && ( )} {copyright && }
) } } export default GlobalFooter