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