import React from "react"; interface SuggestionBoxProps { title: string; content: React.ReactNode; } export function SuggestionBox({ title, content }: SuggestionBoxProps) { return (
{title} {typeof content === "string" ? ( {content} ) : (
{content}
)}
); }