import React from 'react'; import classNames from 'classnames'; import { Button } from 'antd'; import { Link } from 'dva/router'; import config from './typeConfig'; import styles from './index.less'; export default ({ className, type, title, desc, img, actions, ...rest }) => { const pageType = type in config ? type : '404'; const clsString = classNames(styles.exception, className); return (