import React, { PropsWithChildren } from "react"; type Props = PropsWithChildren<{ title?: string; description?: string; }>; export const Container = ({ title, description, children }: Props) => { return (
{title && (

{title}

)}
{description && (

{description}

)}
{children}
); };