React 的样式表现有 JSX 这种独创的 驼峰式 + JSON 语法,它也支持原生的 .css 文件,作为外部引入使用,参考 - CSS 教程。
驼峰式 + JSON
.css
index.css
h1 { color: red; text-decoration: underline; }
index.js
import './index.css'; class Index extends Component { render() { return <h1>react style</h1> } }