mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
384c987389
* 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
30 lines
588 B
TypeScript
30 lines
588 B
TypeScript
import React from "react";
|
|
import { Meta, Story } from "@storybook/react";
|
|
import { noop } from "lodash";
|
|
|
|
import Slider from ".";
|
|
|
|
import "../../../../index.scss";
|
|
|
|
interface ISliderProps {
|
|
value: boolean;
|
|
inactiveText: string;
|
|
activeText: string;
|
|
onChange: () => void;
|
|
}
|
|
|
|
export default {
|
|
component: Slider,
|
|
title: "Components/FormFields/Slider",
|
|
args: {
|
|
value: false,
|
|
inactiveText: "Off",
|
|
activeText: "On",
|
|
onChange: noop,
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story<ISliderProps> = (props) => <Slider {...props} />;
|
|
|
|
export const Default = Template.bind({});
|