diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-07-30 07:46:37 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-07-30 08:10:47 +0200 |
| commit | 4d064042e8a6ebf874fecbc23f13073f39fa1ebe (patch) | |
| tree | 55cb0fc9d92dd2edd998bb910985de5e3b9ed012 /src/web/component/navigation/root.zig | |
| parent | d1776161dcc57b600ce7b18c5e7179757491fbc2 (diff) | |
first version of js parser
Diffstat (limited to 'src/web/component/navigation/root.zig')
| -rw-r--r-- | src/web/component/navigation/root.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/web/component/navigation/root.zig b/src/web/component/navigation/root.zig new file mode 100644 index 0000000..919cddb --- /dev/null +++ b/src/web/component/navigation/root.zig @@ -0,0 +1,8 @@ +const z = @import("z"); + +pub const component: z.Component = .{ + .name = .navigation, + .body = @embedFile("index.html"), + .style = @embedFile("index.css"), + .script = @embedFile("index.js"), +}; |