준비 화면에 뒤로 가기 버튼 추가
This commit is contained in:
@@ -121,15 +121,21 @@ export default function NumberParenthesesClient() {
|
|||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<div>
|
<div className="flex flex-wrap gap-3">
|
||||||
<Link
|
<Link
|
||||||
ref={startLinkRef}
|
ref={startLinkRef}
|
||||||
href={`/number-parentheses/play?count=${selectedProblemCount}`}
|
href={`/number-parentheses/play?count=${selectedProblemCount}`}
|
||||||
onClick={() => initSession(selectedProblemCount)}
|
onClick={() => initSession(selectedProblemCount)}
|
||||||
className="inline-flex h-12 items-center justify-center rounded-md bg-emerald-700 px-6 text-base font-semibold text-white transition hover:bg-emerald-800 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2"
|
className="inline-flex h-12 items-center justify-center rounded-md bg-emerald-700 px-6 text-base font-semibold text-white transition hover:bg-emerald-800 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2"
|
||||||
>
|
>
|
||||||
연습 시작
|
연습 시작
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link
|
||||||
|
href="/"
|
||||||
|
className="inline-flex h-12 items-center justify-center rounded-md border border-slate-300 bg-white px-6 text-base font-semibold text-slate-700 transition hover:bg-slate-100 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2"
|
||||||
|
>
|
||||||
|
뒤로가기
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -125,15 +125,21 @@ export default function VariableParenthesesClient() {
|
|||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<div>
|
<div className="flex flex-wrap gap-3">
|
||||||
<Link
|
<Link
|
||||||
ref={startLinkRef}
|
ref={startLinkRef}
|
||||||
href={`/variable-parentheses/play?count=${selectedProblemCount}`}
|
href={`/variable-parentheses/play?count=${selectedProblemCount}`}
|
||||||
onClick={() => initSession(selectedProblemCount)}
|
onClick={() => initSession(selectedProblemCount)}
|
||||||
className="inline-flex h-12 items-center justify-center rounded-md bg-emerald-700 px-6 text-base font-semibold text-white transition hover:bg-emerald-800 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2"
|
className="inline-flex h-12 items-center justify-center rounded-md bg-emerald-700 px-6 text-base font-semibold text-white transition hover:bg-emerald-800 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2"
|
||||||
>
|
>
|
||||||
연습 시작
|
연습 시작
|
||||||
</Link>
|
</Link>
|
||||||
|
<Link
|
||||||
|
href="/"
|
||||||
|
className="inline-flex h-12 items-center justify-center rounded-md border border-slate-300 bg-white px-6 text-base font-semibold text-slate-700 transition hover:bg-slate-100 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2"
|
||||||
|
>
|
||||||
|
뒤로가기
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user