Skip to content

Commit 00b5239

Browse files
Merge pull request #269 from ItRecode/FE-244
[FE-244] feat: νƒˆν‡΄ν•˜κΈ° 첫 νŽ˜μ΄μ§€ λ ˆμ΄μ•„μ›ƒ κ΅¬ν˜„
2 parents be38654 + 3a5dbe2 commit 00b5239

2 files changed

Lines changed: 42 additions & 3 deletions

File tree

β€Žsrc/pages/Setting/Setting.tsxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ export default function Setting() {
9191
>
9292
<SettingSection routeText="λ‘œκ·Έμ•„μ›ƒ" />
9393
</section>
94-
{/* <section id="withdraw-item-section">
94+
<section id="withdraw-item-section">
9595
<SettingSection routeText="νšŒμ›νƒˆν‡΄" routeUrl="/setting/withdraw" />
96-
</section> */}
96+
</section>
9797
</div>
9898
)}
9999
{isClickedLogout && (
Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,46 @@
11
import React from 'react'
2+
import Button from '@components/Button'
3+
import BackButton from '@components/BackButton'
24

35
const Withdraw = () => {
4-
return <div>κ³„νƒˆν• λž˜μš”</div>
6+
return (
7+
<>
8+
<section id="route-backIcon-button" className="ml-[18px] mt-4">
9+
<BackButton />
10+
</section>
11+
<section id="before-withdraw-info" className="mt-11 px-6 ">
12+
<h1 className="text-[20px] font-medium leading-[30px]">
13+
λ ˆμ½”λ”§μ„ νƒˆν‡΄ν•˜μ‹œκ² μ–΄μš”?
14+
</h1>
15+
<h3 className="mt-10 text-[16px] font-medium leading-[18px]">
16+
νƒˆν‡΄ μ „ <span className="text-sub-1">κΌ­ 확인</span>ν•΄μ£Όμ„Έμš”
17+
</h3>
18+
<ul className="mt-6 flex flex-col gap-5 border-b border-solid border-grey-3 pb-10 text-[12px] leading-[18px] text-grey-7">
19+
<li className="flex">
20+
<span>β€’</span>
21+
<span>
22+
μ§€κΈˆ νƒˆν‡΄ν•˜μ‹œλ©΄ κ·Έ λ™μ•ˆ κ³΅μœ ν•œ λ ˆμ½”λ“œμ™€ λŒ“κΈ€μ˜
23+
<p>좔얡이 λͺ¨λ‘ μ‚¬λΌμ Έμš”.</p>
24+
</span>
25+
</li>
26+
<li className="flex">
27+
<span>β€’</span>
28+
<span>
29+
μž¬κ°€μž…ν•˜μ—¬λ„ κ³΅μœ ν–ˆλ˜ λ ˆμ½”λ“œμ™€ λŒ“κΈ€μ˜
30+
<p>좔얡은 λ³΅κ΅¬λ˜μ§€ μ•Šμ•„μš”.</p>
31+
</span>
32+
</li>
33+
<li>
34+
<span>β€’</span>
35+
<span>νƒˆν‡΄ ν›„ 1주일 λ™μ•ˆμ€ μž¬κ°€μž…μ΄ λΆˆκ°€λŠ₯ν•΄μš”.</span>
36+
</li>
37+
</ul>
38+
</section>
39+
<section id="withdraw-navigate-button" className="mt-[180px] px-6">
40+
<Button property="danger">νƒˆν‡΄ν•˜κΈ°</Button>
41+
</section>
42+
</>
43+
)
544
}
645

746
export default Withdraw

0 commit comments

Comments
Β (0)