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

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