mirror of https://github.com/sveltejs/svelte
13 lines
408 B
13 lines
408 B
/* generated by Svelte vX.Y.Z */
|
|
import { create_ssr_component, debug, each, escape } from "svelte/internal";
|
|
|
|
const SvelteComponent = create_ssr_component(($$result, $$props, $$bindings, $$slots) => {
|
|
let { things, foo } = $$props;
|
|
|
|
return `${each(things, (thing) => `<span>${escape(thing.name)}</span>
|
|
${debug(null, 2, 2, { foo })}`)}
|
|
|
|
<p>foo: ${escape(foo)}</p>`;
|
|
});
|
|
|
|
export default SvelteComponent; |