|
|
|
|
|
by welder
1891 days ago
|
|
You get type checking automatically using withStyles, no plugin needed. That plugin is kinda cool with the css preview feature, but I bet using the built-in IDE autocomplete is more reliable. I also find withStyles more readable in general, for ex: theme: { button: {
primary: {
color: 'blue',
padding: '2px',
},
},
}<Button {...css(theme.button.primary)}> vs. tailwind classes: <Button className="text-blue p-2"> |
|