import React from 'react'; import { Button, Result } from 'antd'; export default () => ( <Result status="404" title="404" style={{ background: 'none', }} subTitle="Sorry, the page you visited does not exist." extra={<Button type="primary">Back Home</Button>} /> );