You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/form-components/SwitchField/SwitchField.stories.tsx

57 lines
1.0 KiB

import { Meta, Story } from '@storybook/react';
import { useState } from 'react';
import { SwitchField } from './SwitchField';
export default {
title: 'Components/Form/SwitchField',
} as Meta;
export function Example() {
const [isChecked, setIsChecked] = useState(false);
function onChange() {
setIsChecked(!isChecked);
}
return (
<SwitchField
name="name"
checked={isChecked}
onChange={onChange}
label="Example"
/>
);
}
interface Args {
checked: boolean;
label: string;
labelClass: string;
}
function Template({ checked, label, labelClass }: Args) {
return (
<SwitchField
name="name"
checked={checked}
onChange={() => {}}
label={label}
labelClass={labelClass}
/>
);
}
export const Checked: Story<Args> = Template.bind({});
Checked.args = {
checked: true,
label: 'label',
labelClass: 'col-sm-6',
};
export const Unchecked: Story<Args> = Template.bind({});
Unchecked.args = {
checked: false,
label: 'label',
labelClass: 'col-sm-6',
};