diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-28 18:37:11 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-28 18:37:11 +0200 |
| commit | 35fb9361b2113f4ebc7179b9421f5f3b8a98a6c7 (patch) | |
| tree | d0edf41dce305830c7e776de5e120a543fb1d1c2 /src/web/component/root.zig | |
| parent | 567c1fa209b0820444e2ad2c6234af5e4e203a8f (diff) | |
add timeline
Diffstat (limited to 'src/web/component/root.zig')
| -rw-r--r-- | src/web/component/root.zig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/web/component/root.zig b/src/web/component/root.zig new file mode 100644 index 0000000..226f3f7 --- /dev/null +++ b/src/web/component/root.zig @@ -0,0 +1,6 @@ +const z = @import("z"); + +pub const components: []const z.Component = &.{ + @import("image/root.zig").component, + @import("timeline/root.zig").component, +}; |