---
title: Slots
---
Just like elements can have children...
```svelte
```
...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`:
```svelte
```
You can now put things in the box:
```svelte
Hello!
This is a box. It can contain anything.
```