Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

[Docs/ko] fix typo and grammar, add ko translation #2309

Open
wants to merge 1 commit into
base: docs
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ npx create-react-app my-app

> [`npx`](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b)는 npm 5.2+ 이상에서 함께 제공되는 패키지 실행 도구다. 오래된 버전의 npm은 이 [설명](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f)을 보면된다.

Create React App을 설치하는 더 많은 방법은 [공식 문서](https://github.com/facebook/create-react-app#creating-an-app)을 보면된다.
Create React App을 설치하는 더 많은 방법은 [공식 문서](https://github.com/facebook/create-react-app#creating-an-app)를 보면 된다.

## 설치

Expand Down Expand Up @@ -59,8 +59,8 @@ function App() {

```javascript
const textState = atom({
key: 'textState', // unique ID (with respect to other atoms/selectors)
default: '', // default value (aka initial value)
key: 'textState', // 고유한 아이디 (다른 atoms/selectors에 대한)
default: '', // 기본 값 (또는 초기 값)
});
```

Expand Down Expand Up @@ -99,7 +99,7 @@ function TextInput() {

```jsx
const charCountState = selector({
key: 'charCountState', // unique ID (with respect to other atoms/selectors)
key: 'charCountState', // 고유한 아이디 (다른 atoms/selectors에 대한)
get: ({get}) => {
const text = get(textState);

Expand Down