<script>
import Box from "./Box.svelte"
</script>
<main>
<Box>
<p>This paragraph should not have a top margin!</p>
<p>This is a paragraph with top and bottom margins</p>
<p>This paragraph should not have a bottom margin!</p>
</Box>
</main>
<style>
p {
margin: 2rem 0;
}
</style>