import { Markdown } from './Markdown' type Props = { id: string content: string solutionsCount?: number } export const Problem = ({ id, content, solutionsCount }: Props) => { return (
{solutionsCount !== undefined && solutionsCount > 0 && ( )}
) }