Open thijssteel opened 6 years ago
By using the following syntax const style = {...commonStyle, ...specificStyle}. I can combine two stylesheets into one.
const style = {...commonStyle, ...specificStyle}
However, even though the styles are used through the style object, the styles from the specificStyle sheet count as unused.
style
specificStyle
@thijssteel thanks for reporting! I guess this is a good improvement to add
By using the following syntax
const style = {...commonStyle, ...specificStyle}
. I can combine two stylesheets into one.However, even though the styles are used through the
style
object, the styles from thespecificStyle
sheet count as unused.