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,10 +1,12 @@
import { ReactNode } from 'react';
// Styled
import { Error, Label, StyledFormRow } from './styled';
interface IFormRow {
label: string;
error?: string;
children: JSX.Element | JSX.Element[];
children: ReactNode;
}
const FormRow = ({ label, error, children }: IFormRow) => {