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