import {ComponentMeta, ComponentStory} from "@storybook/react"; import {Col, Row} from "antd"; import React from "react"; import "../Styles/index.scss"; import { RangePicker } from "../Starship"; export default { title: "Example/RangePicker", component: RangePicker, // More on argTypes: https://storybook.js.org/docs/react/api/argtypes } as ComponentMeta; // More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args const Template: ComponentStory = args => { return ( <> {/* primary button only text */} {/* primary button only text */} ); }; export const StarshipRangePicker = Template.bind({}); // More on args: https://storybook.js.org/docs/react/writing-stories/args StarshipRangePicker.args = {title: "Starship Range Picker"};