const std = @import("std"); const helpers = @import("helpers.zig"); pub const Data = struct {}; pub fn render(allocator: std.mem.Allocator, _: Data) ![]const u8 { var buf: std.ArrayListUnmanaged(u8) = .{}; defer buf.deinit(allocator); try buf.appendSlice(allocator, "

result_title

$result_price
"); return buf.toOwnedSlice(allocator); }