mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
For #25349 This updates storybook and its addons to 8.4.7. This is done to remove the transitive dependency on path-to-regexp, which is no longer used in this version of storybook. This will fix the original vulnerability issue for `path-to-regexp`
23 lines
439 B
TypeScript
23 lines
439 B
TypeScript
import { Meta, StoryObj } from "@storybook/react";
|
|
import { noop } from "lodash";
|
|
|
|
import Slider from ".";
|
|
|
|
import "../../../../index.scss";
|
|
|
|
const meta: Meta<typeof Slider> = {
|
|
component: Slider,
|
|
title: "Components/FormFields/Slider",
|
|
args: {
|
|
value: false,
|
|
inactiveText: "Off",
|
|
activeText: "On",
|
|
onChange: noop,
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof Slider>;
|
|
|
|
export const Default: Story = {};
|