
[Project]/[8.16 ~ 9.15] 최종 프로젝트

[Project]/[8.16 ~ 9.15] 최종 프로젝트
[최종][css] 페이지 일부에만 스크롤 생기도록 하기
*부모 -아무것도 안함 (hidden 안줌) *자식 -height: 80vh 등 (이건 직접 배경색 줘가면서 봐야 함) -overflow-y: scroll

[Project]/[8.16 ~ 9.15] 최종 프로젝트
[최종] [clonecoding] modal 코드 분석
1. PostStatus.jsx export default function PostStatus({ currentUser }) { const [modalOpen, setModalOpen] = useState(false); const [status, setStatus] = useState(""); // 👉input값 생기면 post버튼 생기도록 status 관리 const [allStatuses, setAllStatus] = useState([]); const [currentPost, setCurrentPost] = useState({}); const [isEdit, setIsEdit] = useState(false); const [postImage, setPostImage] = useState(""); c..