Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
530 Bytes
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>
);
}
}