const { inputs } = props; const Section = styled.div` margin-bottom: 5px; `; return ( <> {inputs.map((input, i) => ( <Section key={i}> <Widget src={"rubycop.near/widget/NDC.StyledComponents"} props={{ TextArea: { label: input.label, placeholder: input.placeholder, maxLength: 2000, value: input.value, handleChange: input.handleChange, }, }} /> </Section> ))} </> );