forked from roy-jung/react.dev.ko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.js
More file actions
31 lines (28 loc) · 771 Bytes
/
Copy path500.js
File metadata and controls
31 lines (28 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* 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={[]}
routeTree={sidebarLearn}
meta={{title: 'Something Went Wrong'}}>
<MaxWidth>
<Intro>
<P>Something went very wrong.</P>
<P>Sorry about that.</P>
<P>
If you’d like, please{' '}
<A href="https://github.com/reactjs/react.dev/issues/new">
report a bug.
</A>
</P>
</Intro>
</MaxWidth>
</Page>
);
}