This commit is contained in:
2023-03-03 00:03:37 +01:00
parent 7965ee03b0
commit c6d3c9d7a4
7 changed files with 110 additions and 0 deletions

View File

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