Skip to content
Snippets Groups Projects
Commit 9a0fd163 authored by 다인 김's avatar 다인 김
Browse files

Update file VideoSelection.jsx

parent 952f06f2
No related branches found
No related tags found
1 merge request!42Feat/workout -> develop
......@@ -67,10 +67,10 @@ function VideoSelection({dispatch, setSelected}){
<div className='col padding'>
<h3>난이도</h3>
<label>
<input type="radio" value="advanced" name="level" onChange={handleLevel} checked={currentLevel === 'advanced'} ></input>
<input type="radio" value="advanced" name="level" onClick={handleLevel} checked={currentLevel === 'advanced'} ></input>
</label>
<label>
<input type="radio" value="beginner" name="level" onChange={handleLevel}></input>
<input type="radio" value="beginner" name="level" onClick={handleLevel} checked={currentLevel === 'beginner'} ></input>
</label>
</div>
<div id="timeSelection" className="col center padding">
......@@ -83,7 +83,7 @@ function VideoSelection({dispatch, setSelected}){
setStartMin(value === "" ? null : parseInt(value, 10));
}}></input> */}
<span></span>
<input type="text" name="start" onChange={(e) => setStartSec(parseInt(e.target.value))} checked={currentLevel === 'beginner'} ></input>
<input type="text" name="start" onChange={(e) => setStartSec(parseInt(e.target.value))}></input>
<span></span>
</span>
<span> ~
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment