@mvp-rockets/namma-generator
Version:
A generator to generate mvp-rockets projects
22 lines (18 loc) • 444 B
JavaScript
import RadioButton from "../../atoms/RadioButton";
export default {
title: "atoms/RadioButtons",
component: RadioButton,
};
const Template = (args) => <RadioButton {...args} />;
export const RadioButtons = Template.bind({});
RadioButtons.args = {
id: "test",
name: "test",
className: "",
handleChange: () => {},
isSelected: false,
isError: false,
radioDisable: false,
value: "test",
radioLabel: "Radio Button Text",
};