website/src/components/QA.astro
ndsboy 4bca29d3c3
Some checks are pending
Build Astro / 🧪 Astro check (push) Waiting to run
initial commit
2025-02-22 16:59:06 +00:00

17 lines
289 B
Text

---
export interface Props {
question: string
}
const { question }: Props = Astro.props
---
<div class="chat chat-start">
<div class="chat-bubble chat-bubble-primary">
{question}
</div>
</div>
<div class="chat chat-end">
<div class="chat-bubble">
<slot />
</div>
</div>