mirror of https://github.com/sveltejs/svelte
13 lines
202 B
13 lines
202 B
6 years ago
|
<script>
|
||
6 years ago
|
import ContactCard from './ContactCard.svelte';
|
||
6 years ago
|
</script>
|
||
|
|
||
|
<ContactCard>
|
||
2 years ago
|
<span slot="name"> P. Sherman </span>
|
||
6 years ago
|
|
||
|
<span slot="address">
|
||
2 years ago
|
42 Wallaby Way<br />
|
||
6 years ago
|
Sydney
|
||
|
</span>
|
||
2 years ago
|
</ContactCard>
|