File size: 530 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { PureComponent } from 'react';
export default class extends PureComponent {
static displayName = 'Error';
render() {
return (
<div className="devdocs__error devdocs__doc-content">
<h1>Sorry, we can't find that page right now</h1>
<img alt="WordPress" src="/calypso/images/illustrations/illustration-404.svg" />
<p>
Are we missing documentation? Could our docs be improved? Let us know by{ ' ' }
<a href="/devdocs/docs/CONTRIBUTING.md">filing a GitHub issue</a>!
</p>
</div>
);
}
}
|