在React18中使用className添加样式,为什么不能生效呢?
// App.js
import styles from'./App.css';
<div className={styles.picture}>xxx</div>
// App.css
.picture {
width: 200px;
height: 200px;
background-color: green;
}
className并没有添加进去,React18中为什么这样写不可以呢,之前的React版本这么使用都是可以的
大家可以看看这个:https://github.com/oven-sh/bun/issues/792