mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-20 20:01:19 +00:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
|
|
/** @jsxImportSource jrx */
|
||
|
|
import { render } from "jrx";
|
||
|
|
import { Stack, Text, Button } from "../components";
|
||
|
|
|
||
|
|
export const simpleSpec = render(
|
||
|
|
<Stack>
|
||
|
|
<Text content="Hello from jrx!" />
|
||
|
|
<Button label="Click me" />
|
||
|
|
</Stack>
|
||
|
|
);
|