mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
import "./style.css";
|
|
|
|
export default function CssStyle() {
|
|
return (
|
|
<>
|
|
<h1 class="title">我是红色的</h1>
|
|
<button style={{ "font-size": "10rem" }}>我是一个按钮</button>
|
|
</>
|
|
);
|
|
}
|