File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed 
src/content/reference/react-dom/components Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ title: "<progress>"
44
55<Intro >
66
7- [ 브라우저  내장 컴포넌트  ` <progress> ` ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress ) 를 사용하면 진행률 표시기를 렌더링할 수 있습니다.
7+ [ 내장 브라우저  ` <progress> `  컴포넌트 ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress ) 를 사용하면 진행률 표시기를 렌더링할 수 있습니다.
88
99``` js 
1010< progress value= {0.5 } / > 
@@ -20,30 +20,30 @@ title: "<progress>"
2020
2121### ` <progress> `  {/* progress* /} 
2222
23- 진행률 표시기를 표시하려면 [ 브라우저  내장 컴포넌트  ` <progress> ` ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress ) 를 렌더링합니다.
23+ 진행률 표시기를 표시하려면 [ 내장 브라우저  ` <progress> `  컴포넌트 ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress ) 를 렌더링합니다.
2424
2525``` js 
2626< progress value= {0.5 } / > 
2727``` 
2828
29- [ 아래에서 더 많은  예시를 확인하세요 .] ( #usage ) 
29+ [ 아래  예시를 참고하세요 .] ( #usage ) 
3030
3131#### Props {/* props* /}  
3232
33- ` <progress> ` 는 모든 [ 일반적인  엘리먼트 props ] ( /reference/react-dom/components/common#props ) 를 지원합니다.
33+ ` <progress> ` 는 모든 [ 공통  엘리먼트 Props ] ( /reference/react-dom/components/common#props ) 를 지원합니다.
3434
35- 또한 ` <progress> ` 는 이러한 props를  지원합니다.
35+ 또한 ` <progress> ` 는 아래와 같은 Props를  지원합니다.
3636
3737*  [ ` max ` ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#max ) : 숫자. 최대 ` value ` 를 지정합니다. 기본값은 ` 1 ` 입니다.
38- *  [ ` value ` ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#value ) : ` 0 ` 에서 ` 최대 `  사이의 숫자 또는 결정되지 않은 상태인 경우 ` null ` 입니다. 완료된 양을 나타냅니다.
38+ *  [ ` value ` ] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress#value ) : ` 0 ` 에서 ` max `  사이의 숫자 또는 결정되지 않은 상태인 경우 ` null ` 입니다. 완료된 양을 나타냅니다.
3939
4040--- 
4141
4242## 사용법 {/* usage* /}  
4343
4444### 진행률 표시기 제어 {/* controlling-a-progress-indicator* /}  
4545
46- 진행률 표시기를 표시하려면 ` <progress> `  컴포넌트를 렌더링합니다. ` 0 ` 에서 지정한 ` 최대 `  값 사이의 숫자 ` value ` 를 전달할 수 있습니다. ` 최대 ` 값을 전달하지 않으면 기본적으로 ` 1 ` 로 간주됩니다.
46+ 진행률 표시기를 표시하려면 ` <progress> `  컴포넌트를 렌더링합니다. ` 0 ` 에서 지정한 ` max `  값 사이의 숫자 ` value ` 를 전달할 수 있습니다. ` max `   값을 전달하지 않으면 기본적으로 ` 1 ` 로 간주됩니다.
4747
4848작업이 진행 중이 아닌 경우, 진행률 표시기를 불확정 상태로 설정하려면 ` value={null} ` 을 전달합니다.
4949
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments