[react] className 여러개 선언방법

뿌이·2022년 7월 14일
0

react 15버전

목록 보기
10/17
 <div className={this.colIndex(index) + " txtrgt error_color"}>
 
 //class name에 들어가는 col2,col3 ... 리턴 함수
    colIndex = (index) => {
        let string = index + 2;
        let result;
        if (string === 8) {
            result = "col" + string + " text_extra_bold";
        } else {
            result = "col" + string;
        }
        return result;
    }
profile
기록이 쌓이면 지식이 된다.

0개의 댓글