import 'svelte/internal/disclose-version';
import 'svelte/internal/flags/legacy';
import * as $ from 'svelte/internal/client';
import ContactCard from './ContactCard.svelte';
var root_2 = $.template(`42 Wallaby Way<br> Sydney`, 1);
export default function App($$anchor) {
{
const name = ($$anchor) => {
$.next();
var text = $.text('P. Sherman');
$.append($$anchor, text);
};
const address = ($$anchor) => {
$.next();
var fragment_1 = root_2();
$.next(2);
$.append($$anchor, fragment_1);
};
ContactCard($$anchor, {
name,
address,
$$slots: { name: true, address: true }
});
}
}