mirror of https://github.com/sveltejs/svelte
45 lines
652 B
45 lines
652 B
/* generated by Svelte vX.Y.Z */
|
|
import {
|
|
SvelteComponent,
|
|
detach,
|
|
element,
|
|
init,
|
|
insert,
|
|
noop,
|
|
safe_not_equal
|
|
} from "svelte/internal";
|
|
|
|
function create_fragment(ctx) {
|
|
let b;
|
|
|
|
return {
|
|
c() {
|
|
b = element("b");
|
|
b.textContent = `${get_answer()}`;
|
|
},
|
|
m(target, anchor) {
|
|
insert(target, b, anchor);
|
|
},
|
|
p: noop,
|
|
i: noop,
|
|
o: noop,
|
|
d(detaching) {
|
|
if (detaching) detach(b);
|
|
}
|
|
};
|
|
}
|
|
|
|
const ANSWER = 42;
|
|
|
|
function get_answer() {
|
|
return ANSWER;
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, null, create_fragment, safe_not_equal, {});
|
|
}
|
|
}
|
|
|
|
export default Component; |