summaryrefslogtreecommitdiff
path: root/examples/component/src/MyComponent.astro
blob: 2a3ebcea5470ce14abbec4958d4d9d337d60bf74 (plain) (blame)
1
2
3
4
5
6
7
8
---
// Write your component code in this file!
interface Props {
	prefix?: string;
}
---

<div>{Astro.props.prefix} My special component</div>