With React Starter Kit's Isomorphic CSS style loader for Webpack how'd I pass in the style object instead of the class name?
We can currently do this:
<div className={s.root}>...</div>
and I wonder if we can do something like this:
<FooBar style={s.root.toObject} />
I'm looking for a solution that also works when server-side rendered.