import styles from './button.styl' ;
const Button = ( ) => (
< button className = { styles . foo } > Press Me < / button >
) ;
React Scoped Styles不需要更改常规的样式工作流程。您仍然使用纯字符串分配类。
import './button.styl' ;
const Button = ( ) => (
< button className = "foo" > Press Me < / button >
) ;