Update eslint to 8.27.0
This commit is contained in:
parent
c8fb43a846
commit
98ef4c627a
499 changed files with 8995 additions and 8494 deletions
|
@ -18,15 +18,17 @@ export default {
|
|||
title: 'Components/Checkbox',
|
||||
};
|
||||
|
||||
export const Normal = (): JSX.Element => <Checkbox {...createProps()} />;
|
||||
export const Checked = (): JSX.Element => (
|
||||
<Checkbox {...createProps()} checked />
|
||||
);
|
||||
export function Normal(): JSX.Element {
|
||||
return <Checkbox {...createProps()} />;
|
||||
}
|
||||
export function Checked(): JSX.Element {
|
||||
return <Checkbox {...createProps()} checked />;
|
||||
}
|
||||
|
||||
export const Description = (): JSX.Element => (
|
||||
<Checkbox {...createProps()} description="This is a checkbox" />
|
||||
);
|
||||
export function Description(): JSX.Element {
|
||||
return <Checkbox {...createProps()} description="This is a checkbox" />;
|
||||
}
|
||||
|
||||
export const Disabled = (): JSX.Element => (
|
||||
<Checkbox {...createProps()} disabled />
|
||||
);
|
||||
export function Disabled(): JSX.Element {
|
||||
return <Checkbox {...createProps()} disabled />;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue