- This content will be displayed in the slot
-
-```
-
-### Alternate usage
-
-There's another way we can use slots, useful particularly when a component can have markdown content is as follows (study carefully...):
-
-```astro
----
-// (file: MyComponent.astro)
-
-const { title } = Astro.props;
-export interface Props {
- title: string;
-}
-const content: string = await Astro.props.render('default');
----
-
-// renders the html to the 'content' variable
-