import React, { Component } from 'react'; import { injectIntl } from 'react-intl'; import { Link } from 'dva/router'; import Exception from 'components/Exception'; class Exception500 extends Component { render() { const { intl } = this.props; return ( ); } } export default injectIntl(Exception500);