UNPKG

dumi-theme-nocobase

Version:
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;