13 lines
195 B
Plaintext
13 lines
195 B
Plaintext
![]() |
---
|
||
|
import Badge from "./Badge.astro"
|
||
|
interface Props {
|
||
|
tags: string[]
|
||
|
}
|
||
|
|
||
|
const { tags } = Astro.props
|
||
|
---
|
||
|
|
||
|
<div class="flex flex-wrap gap-1">
|
||
|
{tags.map((tag) => <Badge tag={tag} />)}
|
||
|
</div>
|