import React, { FC } from 'react'; import styled from '@emotion/styled'; import { Text } from '@yandex-lego/components/Text/bundle'; import { TextareaWithAutoResize as Textarea } from '@yandex-lego/components/Textarea/desktop/bundle'; import { Button } from '@yandex-lego/components/Button/desktop/bundle'; type InputFormProps = { feedback: string; setFeedback: (feedback: string) => void; onSubmit: () => void; }; export const InputForm: FC = (props) => { const { feedback, setFeedback, onSubmit } = props; return ( Как вы оцениваете качество документации? Как можно улучшить эту статью?