svelte/documentation/tutorial/14-composition/01-slots/app-b/App.svelte

9 lines
131 B

<script>
import Box from './Box.svelte';
</script>
<Box>
<h2>Hello!</h2>
<p>This is a box. It can contain anything.</p>
</Box>