FRONTEND/임시

    pre-onboarding setting 과정

    1. client / server 폴더 나눔 yarn create react-app . --template typescript client/src/components 와 styles 폴더 만듬 2. .prettierrc.json 설정, tsconfig.json - baseUrl 설정 include는 import시 포함 할거냐 말거냐. 설정 후 꼭 다시 yarn start 해볼 것. ( 바로적용 안됨 ) 3. client - emotion을 쓰기 위해 세팅 시작 yarn add @emotion/react global css를 적용하기 위해 import { css } from '@emotion/react' 하고 reset css export 함 마찬가지로 일부 공통 스타일 적용을 위해 import { The..