8 lines
117 B
JavaScript
8 lines
117 B
JavaScript
const chartStyle = (height) => {
|
|
return {
|
|
width: '100%',
|
|
height: `${height}px`,
|
|
}
|
|
}
|
|
|
|
export {chartStyle}
|