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