404.js 223 B

1234567
  1. import React from 'react';
  2. import { Link } from 'dva/router';
  3. import Exception from 'components/Exception';
  4. export default () => (
  5. <Exception type="404" style={{ minHeight: 500, height: '80%' }} linkElement={Link} />
  6. );