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