import React from 'react'; interface KeywordBubbleProps { text: string; } export const KeywordBubble: React.FC = ({ text }) => { return (
# {text}
); };