first commit

This commit is contained in:
2024-05-15 12:50:04 +02:00
commit 9cdee98114
7 changed files with 7338 additions and 0 deletions

8
src/MyComponent.astro Normal file
View File

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