基础使用
创建项目
npx create-react-app my-app
# 使用ts和vite
npm create vite@latest my-app -- --template react-ts
样式写法
clasName
// 字符串写法
<img className="avatar" />
// 数组写法
<img className={["avatar","avatar"].join(" ")} />
style
<img
className="avatar"
src={user.imageUrl}
alt={'Photo of ' + user.name}
style={{
width: user.imageSize,
height: user.imageSize
}}
/>