import BorderedContainerWithCaption from "../BorderedContainerWithCaption"; import CodeBlock from "./CodeBlock"; type Props = { title: string; description: string; sampleCode: string; }; export default function Problem({ title, description, sampleCode }: Props) { return (
{title}
					{description}
				
); }