export default function CoachMessage({ text, typing = false }) { return (
C
{typing ? (
) : ( text )}
) }