import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { DateRangePicker } from "./DatePicker"; const meta: Meta = { component: DateRangePicker, title: "Primitives/Date Picker", argTypes: {}, }; export default meta; type Story = StoryObj; export const Variants: Story = { render: (args) => (
{ console.log("OUTPUT: ", e); }} />
), args: {}, };