import { DefaultFooter, getMenuData, getPageTitle } from '@ant-design/pro-layout'; import DocumentTitle from 'react-document-title'; import Link from 'umi/link'; import React from 'react'; import { connect } from 'dva'; import { formatMessage } from 'umi-plugin-react/locale'; import SelectLang from '@/components/SelectLang'; import logo from '../assets/logo.svg'; import styles from './UserLayout.less'; const UserLayout = props => { const { route = { routes: [], }, } = props; const { routes = [] } = route; const { children, location = { pathname: '', }, } = props; const { breadcrumb } = getMenuData(routes); return (
{children}
); }; export default connect(({ settings }) => ({ ...settings }))(UserLayout);