wip-elonehoo / .ideas

a repository of good ideas
0 stars 0 forks source link

css in js #6

Open elonehoo opened 10 months ago

elonehoo commented 10 months ago

I want to implement a js in css library that can write css in js and then maybe export a method similar to c and then

import { c } from 'xxxxx'
c('button',{
  color: 'red'
})

can be generated

.button{
  color: red
}