* chore: add changeset * fix(#605): inject HMR/styles even when page includes no elements * chore: update test description
14 lines
279 B
Markdown
14 lines
279 B
Markdown
---
|
|
'astro': patch
|
|
---
|
|
|
|
Add support for components defined in Frontmatter. Previously, the following code would throw an error. Now it is officially supported!
|
|
|
|
```astro
|
|
---
|
|
const { level = 1 } = Astro.props;
|
|
const Element = `h${level}`;
|
|
---
|
|
|
|
<Element>Hello world!</Element>
|
|
```
|