Skip to content

Commit

Permalink
๐Ÿ”จ change: index, App.tsx์—์„œ interface props import
Browse files Browse the repository at this point in the history
  • Loading branch information
ehdtn0321 committed Aug 30, 2024
1 parent 7fbd92e commit 99edec0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
9 changes: 4 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ import LogoutSvg from "@assets/icons/out.svg"
import Withdraw from "@assets/icons/withdraw.svg"
import Youtube from "@assets/icons/youtube.svg"
import Link from "@assets/icons/link.svg"

import SpacewakTextLogo from "@assets/logo/spacewak-text-logo.svg"
import WaktaplayTextLogo from "@assets/logo/waktaplay-text-logo.svg"
import { IElementProps } from "./components/List/Element"

import ChunsikSVG from "@assets/icons/members/gwakchunsik.svg"
import WaktaverseSVG from "@assets/icons/group/waktaverse.svg"

import { IElementProps } from "@components/List/types"

// TODO : ์•„๋ž˜ ๋”๋ฏธ๋ฐ์ดํ„ฐ๋“ค์€ ์›ํ•˜๋Š” ๋‚ด์šฉ์œผ๋กœ ๋ฐ”๊พธ์‹œ๋ฉด ๋˜๊ณ  unit์€ ์ง€์šฐ์…”๋„ ๋ฌด๋ฐฉํ•ฉ๋‹ˆ๋‹ค.
const TABS = [
{
Expand Down Expand Up @@ -109,7 +108,7 @@ const notificationSample: IElementProps[] = [
view: false,
createdAt: "2์‹œ๊ฐ„ ์ „",
category: "๊ฒŒ์‹œํŒ",
type: "favorit",
type: "favorite",
time: null,
},
{
Expand All @@ -128,7 +127,7 @@ const notificationSample: IElementProps[] = [
createdAt: "2์‹œ๊ฐ„ ์ „",
category: "์™ํƒ€ํ”Œ๋ ˆ์ด",
link: "https://www.youtube.com/@waktaverse",
type: "favorit",
type: "favorite",
},
]

Expand Down
29 changes: 16 additions & 13 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
export { default as Button } from "./Button";
export { default as CheckBox } from "./CheckBox";
export { default as Button } from "./Button"
export { default as CheckBox } from "./CheckBox"

export { default as Card } from "./Card";
export type { ICardLink } from "./Card/types";
export { default as Card } from "./Card"
export type { ICardLink } from "./Card/types"

export { default as Chip } from "./Chip";
export { default as Chip } from "./Chip"
export type { IChipBaseProps, IChipMediumProps, IChipSmallProps } from "./Chip/types"

export { default as Filter } from "./Filter";
export { default as Footer } from "./Footer";
export { default as Filter } from "./Filter"
export { default as Footer } from "./Footer"

export { default as Menu } from "./Menu";
export { default as Tabs } from "./Tabs";
export { default as Video } from "./Video";
export { default as LinkCalendar } from "./LinkCalendar";
export { default as Menu } from "./Menu"
export { default as Tabs } from "./Tabs"
export { default as Video } from "./Video"
export { default as LinkCalendar } from "./LinkCalendar"

export { default as Modal } from "./Modal";
export { default as ToastMessage } from "./ToastMessage";
export { default as Modal } from "./Modal"
export { default as ToastMessage } from "./ToastMessage"

export { default as ListNotification } from "./List/Notification"
export { IElementProps } from "./List/types"

0 comments on commit 99edec0

Please sign in to comment.