목록분류 전체보기 (373)
Silver Library (Archived)
Side project title. Anime Biased Exhibition Room Description. 본 사이드 작업물은 react.js 로 카트 기능을 구현하기 위해 필요한 기능을 구현 해 보는 것에 목적을 두고 진행하였습니다. 컨셉은 '분기별 추천작'을 앱 관리자가 선별 하여 나열 해 둔 것을, 방문자가 마음에 드는 아이템을 몇 개 북마크 하도록 버튼을 클릭 해서 Bookmark 메뉴란에 저장되게 합니다. 이러한 기능을 구현하고자 react cart 를 구성하는 것을 목적으로 구글링 하며 조사 하던 중, useContext, createContext 를 접목하였습니다. 이는 props 의 보일러플레이트 같은 형태의 코드 구성을 피하고, 파일별로 접근이 용이할 필요 및 높은 직관성 및, 코드 ..
tl;dr - Let me know how height's vh, calc can be used as professional. Note: That means width: 100vw works. To let it fill the whole width, then use it so instead 100% width. Sauce. CSS `height: calc(100vh);` Vs `height: 100vh;` I'm working on a project where the former developer used: .main-sidebar { height: calc(100vh); } I have no way to contact him/her anymore, and I would like to understand..
사이드 프로젝트라는 것은 개인 단위로 재미의 목적을 포함해서 진행하는 것을 일컫기도 합니다. 다만 제대로 된 계획 시스템과 더불어, 이 프로젝트 구성에 따른 기술적 기능 때문에 생기는 시간 낭비 요소를 제거할 필요가 있습니다. https://dev.to/firangizg/5-steps-to-plan-a-side-project-3h7f 5 Steps to Plan a Side Project Side projects may be daunting to plan, but fun to code. With a proper planning system, you too, can g... dev.to 1. Idea make either (1) shopping cart feature (2) small dictionary ..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/u3rE2/btrTjEJmsUc/LKNoh82kKe02yC6NaRTs71/img.png)
Does setState mutate state? setState() does not immediately mutate this. state but creates a pending state transition. Accessing this. state after calling this method can potentially return the existing value. tl;dr state should remain origin, and mutate setState. If you mutate state directly, then setState will return an empty object. The previous state will be polluted with your mutation. Due ..