mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-23 04:19:48 +00:00
Fix all comments
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user