Files
component-party/content/2-templating/2-styling/qwik/CssStyle.tsx
2026-02-10 14:18:45 +08:00

17 lines
314 B
TypeScript

import { component$, useStyles$ } from "@builder.io/qwik";
export const App = component$(() => {
useStyles$(`
.title {
color: red;
}
`);
return (
<>
<h1 class="title"></h1>
<button style={{ "font-size": "10rem" }}></button>
</>
);
});