mirror of
https://github.com/ziex-dev/ziex.git
synced 2026-07-22 11:39:34 -06:00
12 lines
291 B
Zig
12 lines
291 B
Zig
pub fn Page(allocator: zx.Allocator) zx.Component {
|
|
return (
|
|
<main @allocator={allocator}>
|
|
<Button title="Custom Button" />
|
|
</main>
|
|
);
|
|
}
|
|
|
|
const zx = @import("zx");
|
|
const Button = @import("basic.zx").Button;
|
|
|
|
const ClientComponent = @jsImport("basic.tsx"); |