king
2020-12-30 e003a8ee8843aa60b0b7135f413b2b99857acff9
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';
import './index.scss';
 
function NotFound() {
  return (
    <div className="page-not-found">
      当前页面不存在
    </div>
  );
}
 
export default NotFound;