Fix all comments

This commit is contained in:
2023-11-05 18:28:51 +07:00
parent b0dd3abf0e
commit 3f95ce8343
39 changed files with 483 additions and 443 deletions
@@ -1,9 +1,11 @@
import { FormEvent, ReactNode } from 'react';
// Styled
import { StyledActionBtn, StyledForm } from './styled';
interface IFormProps {
children: JSX.Element | JSX.Element[];
onSubmit: (event: React.FormEvent<HTMLFormElement>) => void;
children: ReactNode;
onSubmit: (event: FormEvent<HTMLFormElement>) => void;
id?: string;
}