frontend/src/Book/Chapter/Notes/Form.tsx
Function Form
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const Form: FunctionComponent<FormProps> = (props) => {
const { elementId, bookPermalink, noteSubmitted } = props;
const [text, setText] = useState<string>("");
const [submitNote] = useMutation(submitNoteMutation);
const submit = (e: React.FormEvent<HTMLFormElement>) => {