mirror of https://github.com/sveltejs/svelte
9 lines
131 B
9 lines
131 B
6 years ago
|
<script>
|
||
|
import Box from './Box.svelte';
|
||
|
</script>
|
||
|
|
||
|
<Box>
|
||
|
<h2>Hello!</h2>
|
||
|
<p>This is a box. It can contain anything.</p>
|
||
2 years ago
|
</Box>
|