工程结构和模块化
创建组件
CSS样式模块化
import "./index.css"import hello from "./index.css"
// 在使用时,就不可直接使用css样式名称了
<h1 className={hello.title}></h1>最后更新于
import "./index.css"import hello from "./index.css"
// 在使用时,就不可直接使用css样式名称了
<h1 className={hello.title}></h1>最后更新于