"use client"; import { useEffect, useRef, useState } from "react"; import MessageList from "./MessageList"; import Composer from "./Composer"; function ExpertActivity({ stage }) { if (stage === "idle") return null; const isParsing = stage === "parsing"; return (