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

{title}

{isConfirmed && (

تایید شده

)}
{children}
); } export default Content;