profile
code runner

CSS table-layout:fixed를 했는데 th, td 한 부분만 너비를 변경하고 싶다고?

table을 하면서 규격을 한방에 맞추려고 table-layout:fixed; 옵션을 주어버렸다. 그러니까 화면에는 이쁘게 출력되지만 너비조정이 불가하게 되어버린 상황...고럴때 바로 태그네임(colgroup과 col)이 필요하다.

2021년 4월 13일
·
0개의 댓글
·

Redux toolkit 을 React에 적용하기 ep.2 (counter 예제)

CRA(create-react-app) +Typescript 위에서 redux-toolkit 공식문서에 있는 간단한 카운터를 따라해보자

2021년 4월 2일
·
0개의 댓글
·

Redux toolkit 을 React에 적용하기 ep.1 (설치 및 api 설명)

공식문서 참고https://redux-toolkit.js.org/introduction/getting-started\[링크텍스트](https://redux-toolkit.js.org/introduction/getting-started)맨날 redux랑

2021년 4월 2일
·
0개의 댓글
·

import {combineReducers, createStore, applyMiddleware, compose } from 'redux ' 란 무엇인가?

redux를 사용시, 유의할 점은 앱에 하나 이외의 스토어를 만들면 안된다는 것이다. 대신 여러개의 reducer를 하나의 rootReducer로 묶어서(통합된 하나의 스토어를 만들기 위함) 사용하기 위해 combineReducers가 필요하다앱 내에, 단 하나만 존재

2021년 3월 30일
·
0개의 댓글
·

CRA - react typescript ESlint + Prettier 설정

해당 내용은 CRA(create-react-app)+ typescript 를 사용할때의 내용이다.eslint(airbnb 스타일) 와 prettier 동시 사용을 위한 패키지 설치를 위해, CRA의 터미널 창에 하단의 명령어를 입력한다.src와 같은 최상위 경로에 .e

2021년 3월 29일
·
0개의 댓글
·

CRA - react typescript 시작 및 초기 설정

CRA를 이용하여 react와 typescript 시작하기 npx create-react-app 프로젝트이름(개별) --template typescriptyarn create react-app 프로젝트이름(개별) --template typescript

2021년 3월 29일
·
0개의 댓글
·