import React from 'react'; import Exception, { IExceptionProps } from 'ant-design-pro/lib/Exception'; import LinkButton from 'components/LinkButton'; const actions = (
Explore projects Create project
); const content: { [index: string]: IExceptionProps } = { 404: { title: '404', desc: 'Sorry, we could not find the page you were looking for.', actions, style: { padding: '2rem' }, }, }; interface Props { code: '403' | '404' | '500'; } const ExceptionComponent: React.SFC = ({ code }) => ( ); export default ExceptionComponent;