mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-11 08:07:26 +02:00
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
import React from 'react';
|
|
import Layout from '@theme/Layout';
|
|
|
|
export default class NotFound extends React.Component {
|
|
render() {
|
|
return (
|
|
<Layout>
|
|
<div>404 Page Not Found</div>
|
|
<div>
|
|
<img alt="Not found" src="https://i.imgur.com/yG7L3Lb.gif" />
|
|
</div>
|
|
</Layout>
|
|
);
|
|
}
|
|
}
|