8 lines
150 B
Text
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>
|