Skip to content

Commit 03ff614

Browse files
committed
Translate links to Hooks at Glance
1 parent ba66231 commit 03ff614

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: content/blog/2018-11-27-react-16-roadmap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function Example() {
8787
}
8888
```
8989

90-
Hooks [introduction](/docs/hooks-intro.html) and [overview](/docs/hooks-overview.html) are good places to start. Watch [these talks](https://www.youtube.com/watch?v=V-QO-KO90iQ) for a video introduction and a deep dive. The [FAQ](/docs/hooks-faq.html) should answer most of your further questions. To learn more about the motivation behind Hooks, you can read [this article](https://medium.com/@dan_abramov/making-sense-of-react-hooks-fdbde8803889). Some of the rationale for the API design of Hooks is explained in [this RFC thread reply](https://github.com/reactjs/rfcs/pull/68#issuecomment-439314884).
90+
Hooks [introduction](/docs/hooks-intro.html) and [Hook 개요](/docs/hooks-overview.html) are good places to start. Watch [these talks](https://www.youtube.com/watch?v=V-QO-KO90iQ) for a video introduction and a deep dive. The [FAQ](/docs/hooks-faq.html) should answer most of your further questions. To learn more about the motivation behind Hooks, you can read [this article](https://medium.com/@dan_abramov/making-sense-of-react-hooks-fdbde8803889). Some of the rationale for the API design of Hooks is explained in [this RFC thread reply](https://github.com/reactjs/rfcs/pull/68#issuecomment-439314884).
9191

9292
We have been dogfooding Hooks at Facebook since September. We don't expect major bugs in the implementation. Hooks are only available in the 16.7 alpha versions of React. Some of their API is expected to change in the final version (see the end of [this comment](https://github.com/reactjs/rfcs/pull/68#issuecomment-439314884) for details). It is possible that the minor release with Hooks might not be React 16.7.
9393

Diff for: content/blog/2019-02-06-react-v16.8.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Hooks let you use state and other React features without writing a class. You ca
1212
If you've never heard of Hooks before, you might find these resources interesting:
1313

1414
* [Introducing Hooks](/docs/hooks-intro.html) explains why we're adding Hooks to React.
15-
* [Hooks at a Glance](/docs/hooks-overview.html) is a fast-paced overview of the built-in Hooks.
15+
* [Hook 개요](/docs/hooks-overview.html) is a fast-paced overview of the built-in Hooks.
1616
* [Building Your Own Hooks](/docs/hooks-custom.html) demonstrates code reuse with custom Hooks.
1717
* [Making Sense of React Hooks](https://medium.com/@dan_abramov/making-sense-of-react-hooks-fdbde8803889) explores the new possibilities unlocked by Hooks.
1818
* [useHooks.com](https://usehooks.com/) showcases community-maintained Hooks recipes and demos.

Diff for: content/docs/hooks-intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ To solve these problems, **Hooks let you use more of React's features without cl
8787

8888
>Examples
8989
>
90-
>[Hooks at a Glance](/docs/hooks-overview.html) is a good place to start learning Hooks.
90+
>[Hook 개요](/docs/hooks-overview.html) is a good place to start learning Hooks.
9191
9292
## Gradual Adoption Strategy {#gradual-adoption-strategy}
9393

Diff for: content/docs/hooks-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ next: hooks-faq.html
1010

1111
This page describes the APIs for the built-in Hooks in React.
1212

13-
If you're new to Hooks, you might want to check out [the overview](/docs/hooks-overview.html) first. You may also find useful information in the [frequently asked questions](/docs/hooks-faq.html) section.
13+
If you're new to Hooks, you might want to check out [Hook 개요](/docs/hooks-overview.html) first. You may also find useful information in the [frequently asked questions](/docs/hooks-faq.html) section.
1414

1515
- [Basic Hooks](#basic-hooks)
1616
- [`useState`](#usestate)

Diff for: content/docs/nav.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
- id: hooks-intro
111111
title: Introducing Hooks
112112
- id: hooks-overview
113-
title: Hooks at a Glance
113+
title: Hook 개요
114114
- id: hooks-state
115115
title: Using the State Hook
116116
- id: hooks-effect

0 commit comments

Comments
 (0)