Skip to content

Commit dc9ea3e

Browse files
committed
chore: main.ts 스토리북 경로 추가
1 parent 767b73f commit dc9ea3e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.storybook/main.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ interface StorybookConfig extends BaseStorybookConfig {
55
}
66

77
const config: StorybookConfig = {
8-
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
8+
stories: [
9+
"../src/**/*.mdx",
10+
"../src/**/*.stories.@(js|jsx|mjs|ts|tsx)",
11+
"../src/app/stories/**/*.stories.@(js|jsx|mjs|ts|tsx)",
12+
],
913
addons: [
1014
"@storybook/addon-links",
1115
"@storybook/addon-essentials",

public/favicon.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/app/components/input/file/ImageInput/ImageInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { DragDropContext, Droppable, Draggable, DropResult } from "react-beautif
66
import PreviewItem from "./PreviewItem";
77
import { cn } from "@/lib/tailwindUtil";
88
import { ImageInputType } from "@/types/addform";
9+
import React from "react";
910

1011
interface ImageInputProps {
1112
name: string;

0 commit comments

Comments
 (0)