mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
* clean up routes and useless components * component clean up * removed redux from routes * rename file * moved useDeepEffect hook with others * removed redux, fleet, app_constants dirs; added types to utilities * style cleanup * typo fix * removed unused ts-ignore comments * removed redux packages!!! * formatting * fixed typing for simple search function * updated frontend readme
27 lines
570 B
TypeScript
27 lines
570 B
TypeScript
import React from "react";
|
|
import { Meta, Story } from "@storybook/react";
|
|
import { noop } from "lodash";
|
|
|
|
import Radio from ".";
|
|
import { IRadioProps } from "./Radio";
|
|
|
|
import "../../../../index.scss";
|
|
|
|
export default {
|
|
component: Radio,
|
|
title: "Components/FormFields/Radio",
|
|
args: {
|
|
checked: true,
|
|
disabled: false,
|
|
label: "Selected radio",
|
|
value: "",
|
|
id: "",
|
|
name: "",
|
|
className: "",
|
|
onChange: noop,
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story<IRadioProps> = (props) => <Radio {...props} />;
|
|
|
|
export const Default = Template.bind({});
|