Files
simbarag/raggr-frontend/src/components/QuestionBubble.tsx
2025-10-25 09:30:54 -04:00

8 lines
193 B
TypeScript

type QuestionBubbleProps = {
text: string;
};
export const QuestionBubble = ({ text }: QuestionBubbleProps) => {
return <div className="rounded-md bg-stone-200 p-3">🤦: {text}</div>;
};