import React, { memo } from 'react'; import { ArrowLeftIcon, ArrowRrightIcon, } from 'Assets/svgs'; import { EstimateSteps, } from 'Utils/constants'; const Comments = ( { step, onStepChange, onUpdateComment, onSubmit, errorMessage, submitLoading, comments } ) => { {/* Comments */ } return (

Comments

(3 of 3)
{/* */}

{ errorMessage }

); } const CommentsMemo = memo( Comments ); export { CommentsMemo as Comments };