import type { Meta, StoryObj } from '@storybook/react';
import { Box, Text, Checkbox, CheckboxProps } from '@neno-ignite-ui/react';
export default {
title: 'Form/Checkbox',
component: Checkbox,
args: {},
decorators: [
(Story) => (
Accept terms of use
)
]
} as Meta;
export const Primary: StoryObj = {};