"use client"; interface Props { questions: string[]; onSelect: (question: string) => void; } export function SuggestedQuestionsTab({ questions, onSelect }: Props) { if (questions.length === 0) return null; return (
{questions.map((q) => ( ))}
); }