mirror of
https://github.com/velocitatem/garlic.git
synced 2026-05-31 08:43:36 +00:00
9 lines
150 B
Plaintext
9 lines
150 B
Plaintext
---
|
|
// Write your component code in this file!
|
|
export interface Props {
|
|
prefix?: string;
|
|
}
|
|
---
|
|
|
|
<div>{Astro.props.prefix} My special component</div>
|