TailwindCSS: You can not pass arbitrary values as variables2023. 5. 28.
const A = `after:content-['░']`
const B = `after:content-['${variable}']`
const A = `after:content-['░']`
const B = `after:content-['${variable}']`
A
works, but B
doesn't.
const A = `after:content-['░']`
const B = `after:content-['${variable}']`
const A = `after:content-['░']`
const B = `after:content-['${variable}']`
A
works, but B
doesn't.