style을 추가하고 싶을 때 dash 가 존재하는 경우에는 따옴표로 감싸서 작성하거나 아니면 카멜케이스로 따옴표 없이 작성하면 된다 .ChartBar.js import React from 'react'; const ChartBar = () => { let barFillHeight = '0%'; if (props.max > 0) { barFillHeight = Math.round((props.value / props.maxValue) * 100) + '%'; } return } export default ChartBar;