forked from reactjs/ko.react.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path500.js
More file actions
32 lines (29 loc) · 853 Bytes
/
500.js
File metadata and controls
32 lines (29 loc) · 853 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
32
/*
* 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: '문제가 발생했습니다'}}>
<MaxWidth>
<Intro>
<P>아주 큰 문제가 발생했습니다.</P>
<P>불편을 드려 죄송합니다.</P>
<P>
가능하시다면{' '}
<A href="https://github.com/reactjs/ko.react.dev/issues/new">
버그를 신고
</A>
해주실 수 있으실까요?
</P>
</Intro>
</MaxWidth>
</Page>
);
}