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