function Content({ isConfirmed, children, title, error }) { return (

{title}

{isConfirmed && (

تایید شده

)}
{children}

{error || ""}

); } export default Content;