전체 글(134)
-
VSC (설정)사용자->전체 설정 / 작업영역-> 해당 프로젝트만 설정
settings.json 안에 작성할 내용: 설정>워크벤치>모양 { "workbench.colorCustomizations": { "titleBar.activeBackground": "#F54133", "titleBar.inactiveBackground": "#F54133" } }
2020.11.30 -
react폴더 복사>> cp -R 대상폴더이름 새폴더이름
오래걸림
2020.11.30 -
commit 명령어
git status git add * git commit -m "메시지"
2020.11.30 -
뒤로가기 버튼 (window.)history.back() / history.back(-2 /2) /history.forward(); 앞으로가기 2020.11.28
-
3항조건연산자를 참/거짓만 하고 싶을때 조건 && 참일때 결과 or 조건 || 거짓일때 결과로 표현할수있다 2020.11.25
-
react에서 font awesome 쓰기
터미널 yarn add @fortawesome/fontawesome-free src > index.js import '@fortawesome/fontawesome-free/js/all.js'; >> 쓰려고하는 자식 component에서 사용하면됨 (ex)
2020.11.25 -
REACT
리액트는 컴포넌트 단위로 이루어진 UI 라이브러리이다. 리액트는 reusable, independent, isolated하다. Virtual DOM Tree와 메모리에 저장해둔 이전의 Tree를 비교해서 필요한 부분만 업데이트한다.
2020.11.24 -
<a rel="noopener noreferrer"></a> 2020.11.23
-
e.target.dataset. 이름 >> data-이름="호출대상" 2020.11.22