修改Ant Design Pro底部版权信息的方法
2021-06-07 本文已影响0人
python小智
找到路径下文件
src/components/Footer/index.tsx
修改内容为:
export default () => {
const intl = useIntl();
const defaultMessage = intl.formatMessage({
id: 'app.copyright.produced',
defaultMessage: 'xxxx出品',
});
return (
<DefaultFooter
copyright={` ${defaultMessage}`}
links = {[]}
/>
);
};