import React from "react"; export default function LoadingResult({ question, themeColor = "var(--primary-color)" }) { return (
{/* Question Header */}
Q:
{question} Running query pipeline...
{/* SQL block skeleton */}
{/* Insight box skeleton */}
{/* Chart tab content area skeleton */}
{/* Status Footer */}
🤔 Generating SQL and running query...
); }