suggestion
-
Social Media 만들기 - 17) share, suggestion 구현하기NODE.JS 2021. 7. 31. 16:50
편지모양 아이콘을 누르면 share모드가 나오도록 설정하자. 먼저 react-share를 사용하기 위해서 npm i react-share를 해준다. https://www.npmjs.com/package/react-share react-share Social media share buttons and share counts for React. www.npmjs.com cardFooter.js const [isShare, setIsShare] = useState(false) { isShare && } components>utils.js export const BASE_URL='http://localhost:3000' components>ShareModal.js를 만들어준다. import React from ..