<Box key={index} id={`section-${index}`} my={(index > 0) ? 10 : 0}>
<Section info={info}/>
</Box>
)}
и потом использую внутри компоненты:
const NarrativeSection: FC<{info: SectionInfo }> = ({info}) {
...
const onValidSubmit: SubmitHandler<{ sectionTitle: string }> = (data) => info.changeTitle(data.sectionTitle)
...
}
Section и NarrativeSection это одно и то же?
ага, но я по итогу отказался от использования классов в стейте, я так понял что это плохая идея
Обсуждают сегодня