blob: 919cddbd192688df2496428a035d068c764e354f (
plain)
1
2
3
4
5
6
7
8
|
const z = @import("z");
pub const component: z.Component = .{
.name = .navigation,
.body = @embedFile("index.html"),
.style = @embedFile("index.css"),
.script = @embedFile("index.js"),
};
|