--- title: Slots --- Just like elements can have children... ```html

I'm a child of the div

``` ...so can components. Before a component can accept children, though, it needs to know where to put them. We do this with the `` element. Put this inside `Box.svelte`: ```html
``` You can now put things in the box: ```html

Hello!

This is a box. It can contain anything.

```