ziex/test/data/component/react.zx
2025-12-23 16:14:04 +06:00

13 lines
306 B
Zig

pub fn Page(allocator: zx.Allocator) zx.Component {
const max_count = 10;
return (
<main @allocator={allocator}>
<CounterComponent @rendering={.react} max_count={max_count} />
</main>
);
}
const zx = @import("zx");
const CounterComponent = @jsImport("react.tsx");