Variables
February 6, 2018 ยท View on GitHub
Use JavaScript variables in your CSS templates.
const color = 'red';
const border = `${borderWidth}px solid red`;
const template = {
color,
border,
background: '#eee',
}
February 6, 2018 ยท View on GitHub
Use JavaScript variables in your CSS templates.
const color = 'red';
const border = `${borderWidth}px solid red`;
const template = {
color,
border,
background: '#eee',
}