mirror of
https://github.com/withastro/astro.git
synced 2025-03-03 22:57:08 -05:00
8 lines
143 B
Text
8 lines
143 B
Text
---
|
|
// Write your component code in this file!
|
|
interface Props {
|
|
prefix?: string;
|
|
}
|
|
---
|
|
|
|
<div>{Astro.props.prefix} My special component</div>
|