We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47433a7 commit 7398747Copy full SHA for 7398747
src/components/TermsAndPrivacy.tsx
@@ -0,0 +1,24 @@
1
+const TermsAndPrivacy = () => {
2
+ const togglePopup = (_mode: "terms" | "privacy") => {
3
+ // 이용약관 및 개인정보처리방침 메시지 팝업
4
+ };
5
+
6
+ return (
7
+ <div className="flex items-center w-screen text-gray-900 text-sm lex">
8
+ <button
9
+ onClick={() => togglePopup("terms")}
10
+ className="flex justify-center border-r w-full hover:font-bold"
11
+ >
12
+ 이용약관
13
+ </button>
14
15
+ onClick={() => togglePopup("privacy")}
16
+ className="w-full hover:font-bold"
17
18
+ 개인정보처리방침
19
20
+ </div>
21
+ );
22
+};
23
24
+export default TermsAndPrivacy;
0 commit comments