diff --git a/src/pages/subscription/components/NotificationSettings.jsx b/src/pages/subscription/components/NotificationSettings.jsx new file mode 100644 index 0000000..d65443e --- /dev/null +++ b/src/pages/subscription/components/NotificationSettings.jsx @@ -0,0 +1,52 @@ +export default function NotificationSettings({ minScore, notifyEnabled, onChange }) { + const score = minScore ?? 70; + const enabled = notifyEnabled ?? true; + + return ( +
μλ¦Ό μ€μ
++ {enabled + ? `π‘ ${score}μ μ΄μ λ§€μΉ μ ν λ κ·Έλ¨μ μλ μλ¦Όν©λλ€.` + : "β οΈ μλ¦Ό OFF β μκ³κ°μ ν΅κ³Όν λ§€μΉμ΄ μμ΄λ λ©μμ§κ° λ°μ‘λμ§ μμ΅λλ€."} +
+