table을 하면서 규격을 한방에 맞추려고 table-layout:fixed; 옵션을 주어버렸다. 그러니까 화면에는 이쁘게 출력되지만 너비조정이 불가하게 되어버린 상황...고럴때 바로 태그네임(colgroup과 col)이 필요하다.
CRA(create-react-app) +Typescript 위에서 redux-toolkit 공식문서에 있는 간단한 카운터를 따라해보자
공식문서 참고https://redux-toolkit.js.org/introduction/getting-started\[링크텍스트](https://redux-toolkit.js.org/introduction/getting-started)맨날 redux랑
redux를 사용시, 유의할 점은 앱에 하나 이외의 스토어를 만들면 안된다는 것이다. 대신 여러개의 reducer를 하나의 rootReducer로 묶어서(통합된 하나의 스토어를 만들기 위함) 사용하기 위해 combineReducers가 필요하다앱 내에, 단 하나만 존재
해당 내용은 CRA(create-react-app)+ typescript 를 사용할때의 내용이다.eslint(airbnb 스타일) 와 prettier 동시 사용을 위한 패키지 설치를 위해, CRA의 터미널 창에 하단의 명령어를 입력한다.src와 같은 최상위 경로에 .e
CRA를 이용하여 react와 typescript 시작하기 npx create-react-app 프로젝트이름(개별) --template typescriptyarn create react-app 프로젝트이름(개별) --template typescript