AP
Size: a a a
AP
AP
AP
ON
AP
AP
ON
ON
AP
function create_fragment(ctx) {
let h1;
return {
c() {
h1 = element("h1");
h1.textContent = `Hello ${name}!`;
},
m(target, anchor) {
insert(target, h1, anchor);
},
p: noop,
i: noop,
o: noop,
d(detaching) {
if (detaching) detach(h1);
}
};
}
AP
ON
ON
ON
AP
AP
AP
AP
AP
ON