<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;
}