UNPKG

dumi-theme-antd

Version:

Ant Design 5.0 官网风格类似的 dumi2 主题插件

10 lines (9 loc) 252 B
import React from 'react'; export interface NotFoundProps { router: { push: (pathname: string) => void; replace: (pathname: string) => void; }; } declare const NotFoundPage: React.FC<NotFoundProps>; export default NotFoundPage;