File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ const KakaoShareButton = ({
4242 < button onClick = { handleShare } >
4343 < img
4444 src = "/icon/kakaotalk.svg"
45- alt = "카카오통 공유하기 버튼"
45+ alt = "카카오톡 공유하기 버튼"
4646 width = { 72 }
4747 height = { 72 }
4848 />
Original file line number Diff line number Diff line change 11import { useEffect , useState } from "react" ;
22import UrlCopyBar from "@/components/button/UrlCopyBar" ;
3- import KakaoShareButton from "../button/KakaoShareButton" ;
43import TwitterShareButton from "@/components/button/TwitterShareButton" ;
4+ import KakaoShareButton from "@/components/button/KakaoShareButton" ;
55
66interface ShareModalProps {
77 closeModal : ( ) => void ;
Original file line number Diff line number Diff line change 1- import { StrictMode } from "react" ;
21import { createRoot } from "react-dom/client" ;
32import "./index.css" ;
43import App from "./App" ;
54
6- createRoot ( document . getElementById ( "root" ) ! ) . render (
7- < StrictMode >
8- < App />
9- </ StrictMode >
10- ) ;
5+ createRoot ( document . getElementById ( "root" ) ! ) . render ( < App /> ) ;
You can’t perform that action at this time.
0 commit comments