summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/Heading.astro
blob: f1805aaf73ac46d73b9e2c57b3e894afd50c39c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
<h1>
  <slot/>
</h1>

<style>
  h1 {
    color: red;
  }
</style>