yangyin
2024-12-12 a716633c5bc444fcc1199fe9f55c437329b8764b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react';
import {Link} from 'react-router-dom';
import {NotFound} from 'amis';
 
export default () => (
  <NotFound
    links={
      <Link to="/" className="list-group-item">
        <i className="fa fa-chevron-right text-muted" />
        <i className="fa fa-fw fa-mail-forward m-r-xs" />
        去首页
      </Link>
    }
    footerText={''}
  />
);