Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import React from "react";
import { Decorator } from "@storybook/react";
import { useRouter } from "next/navigation";
import "./storybook.css";

const queryClient = new QueryClient();

Expand Down
17 changes: 17 additions & 0 deletions .storybook/storybook.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
* {
cursor: auto !important;
}

html,
body {
cursor: auto !important;
}

a,
button,
[role="button"],
input,
select,
textarea {
cursor: auto !important;
}
131 changes: 0 additions & 131 deletions src/app/components/input/file/ImageInput/ImageInput.tsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import DatePickerInput from "@/app/components/input/dateTimeDaypicker/DatePickerInput";
import "react-datepicker/dist/react-datepicker.css";
import { Meta, StoryObj } from "@storybook/react";
import { FormProvider, useForm } from "react-hook-form";
import DatePickerInput from "@/app/components/input/dateTimeDaypicker/DatePickerInput";

const meta = {
title: "Design System/Components/Date-Time-Day Picker/DatePicker",
Expand All @@ -28,8 +28,8 @@ type Story = StoryObj<typeof DatePickerInput>;
export const DatePicker: Story = {
render: () => (
<DatePickerInput
startDate={undefined}
endDate={undefined}
startDate={new Date()}
endDate={new Date()}
displayValue="2024.01.02 ~ 2024.03.03"
onChange={() => {}}
/>
Expand Down
Loading