We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
import styles from './home.less';
// 有效果 <h2 className={"header"}>Home</h2>
<h2 className={"header"}>Home</h2>
// 没有效果 <h2 className={styles.header}>Home</h2>
<h2 className={styles.header}>Home</h2>
// home.less .header { padding: 0 12px; color: #666666; cursor: move; }
I'm noticing the same. Not sure if this is the new way of styling.
I'm noticing the same. Not sure if this is the new way of styling. I currently use sass because I don't want to use eject
you need css module 。
Activity
sidkalluri commentedon Apr 16, 2020
I'm noticing the same. Not sure if this is the new way of styling.
scxslsh commentedon Apr 17, 2020
FlexibleHha commentedon Jan 15, 2021
you need css module 。