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

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