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