[TIL] - 2021-06-10

Eamon·2021년 6월 10일
0

TIL

목록 보기
6/10

1) react 에서 svg 파일 쓰는 방법

  1. img tag 만들고 <img src={svg 경로} /> 로 사용하기
  2. svg 파일을 import 받을때 ReactComponent 로 받아서 styled component 에 넣어서 확장해서 쓰기
  3. svgr을 통해 React Component로 사용하기

%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0

https://create-react-app.dev/docs/using-the-public-folder/

Adding Assets Outside of the Module System

2) tsconfig "baseUrl" 설정에서 절대경로를 설정할때 "src" 로도 충분하지만 typescript 버젼에 따라서 "./src" 요로케 저장해야할 경우가 있다.

https://www.typescriptlang.org/tsconfig#baseUrl

3) Temporal Dead Zone(TDZ) , Hoisting

  • 초기화되지 않은 변수가 있는 곳을 Temporal Dead Zone이라고 합니다.
  • 변수가 초기화되는 순간 TDZ에서 나오게 되며 사용할 수 있게 되는 것입니다.
  • 선언 보다 실행되는 순간이 더 중요하다.

4) 오늘의 알고리즘

profile
Steadily , Daily, Academically, Socially semi-nerd Front Engineer.

0개의 댓글