astro/examples/component/src/MyComponent.astro
2022-09-08 16:32:36 +00:00

8 lines
150 B
Text

---
// Write your component code in this file!
export interface Props {
prefix?: string;
}
---
<div>{Astro.props.prefix} My special component</div>