Update eslint to 8.27.0
This commit is contained in:
parent
c8fb43a846
commit
98ef4c627a
499 changed files with 8995 additions and 8494 deletions
|
@ -24,7 +24,7 @@ export type PropsType = {
|
|||
onClick?: () => unknown;
|
||||
};
|
||||
|
||||
export const Checkbox = ({
|
||||
export function Checkbox({
|
||||
checked,
|
||||
children,
|
||||
description,
|
||||
|
@ -35,7 +35,7 @@ export const Checkbox = ({
|
|||
name,
|
||||
onChange,
|
||||
onClick,
|
||||
}: PropsType): JSX.Element => {
|
||||
}: PropsType): JSX.Element {
|
||||
const getClassName = getClassNamesFor('Checkbox', moduleClassName);
|
||||
const id = useMemo(() => `${name}::${uuid()}`, [name]);
|
||||
|
||||
|
@ -76,4 +76,4 @@ export const Checkbox = ({
|
|||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue