mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-27 03:08:06 +00:00
30 lines
761 B
JavaScript
30 lines
761 B
JavaScript
/*
|
||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
*/
|
||
|
||
import {Page} from 'components/Layout/Page';
|
||
import {MDXComponents} from 'components/MDX/MDXComponents';
|
||
import sidebarLearn from '../sidebarLearn.json';
|
||
|
||
const {Intro, MaxWidth, p: P, a: A} = MDXComponents;
|
||
|
||
export default function NotFound() {
|
||
return (
|
||
<Page toc={[]} meta={{title: 'Not Found'}} routeTree={sidebarLearn}>
|
||
<MaxWidth>
|
||
<Intro>
|
||
<P>This page doesn’t exist.</P>
|
||
<P>
|
||
If this is a mistake{', '}
|
||
<A href="https://github.com/reactjs/react.dev/issues/new">
|
||
let us know
|
||
</A>
|
||
{', '}
|
||
and we will try to fix it!
|
||
</P>
|
||
</Intro>
|
||
</MaxWidth>
|
||
</Page>
|
||
);
|
||
}
|