import React, { Fragment } from 'react'; import { formatMessage } from 'umi/locale'; import Link from 'umi/link'; import { Icon } from 'antd'; import GlobalFooter from '@/components/GlobalFooter'; import SelectLang from '@/components/SelectLang'; import styles from './UserLayout.less'; import logo from '../assets/logo.svg'; const links = [ { key: 'help', title: formatMessage({ id: 'layout.user.link.help' }), href: '', }, { key: 'privacy', title: formatMessage({ id: 'layout.user.link.privacy' }), href: '', }, { key: 'terms', title: formatMessage({ id: 'layout.user.link.terms' }), href: '', }, ]; const copyright = ( Copyright 2020 SpringBlade{' '} {' '} ); const UserLayout = ({ children }) => ( // @TODO
logo Sword 企业级开发平台
Sword是SpringBlade前端UI项目,基于react 、ant design、umi、dva等流行技术栈。
{children}
); export default UserLayout;