-
- {
- setSelectedFolderId(allLinksId);
- setKeyword("");
- }}
- isSelected={allLinksId === selectedFolderId}
- />
- {folders?.map(({ id, name }) => (
- {
- setSelectedFolderId(id);
- setKeyword("");
- }}
- isSelected={id === selectedFolderId}
- />
- ))}
-
-
-
-
{
- setCurrentModal(modalsId.addFolder);
- }}
- />
- {/* REMIND: 이런 식으로 팝업 시킬 모달창을 제어할 수 있다 */}
-
-
-
{folderName}
-
- {buttons.map(({ text, iconSource, modalId }) => (
- setCurrentModal(modalId)}
- />
- ))}
-
-
-
-
-
- );
-};
diff --git a/src/components-FolderPage/feature-folder-tool-bar/constant.ts b/src/components-FolderPage/feature-folder-tool-bar/constant.ts
deleted file mode 100644
index 52c722a23..000000000
--- a/src/components-FolderPage/feature-folder-tool-bar/constant.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-export const modalsId = {
- addFolder: "addFolder",
- share: "share",
- rename: "rename",
- delete: "delete",
-};
-
-export const buttons = [
- {
- iconSource: "images/share.svg",
- text: "공유",
- modalId: modalsId.share,
- },
- {
- iconSource: "images/pen.svg",
- text: "이름 변경",
- modalId: modalsId.rename,
- },
- {
- iconSource: "images/trash.svg",
- text: "삭제",
- modalId: modalsId.delete,
- },
-];
-
-export const allLinksText = "전체";
-
-export const KAKAO_SHARE_DATA = {
- title: "Linkbrary",
- description: "링크를 저장하고 공유하는 가장 쉬운 방법",
- imageUrl: "https://codeit-frontend.codeit.com/static/images/brand/og_tag.png",
-};
diff --git a/src/components-FolderPage/feature-folder-tool-bar/index.ts b/src/components-FolderPage/feature-folder-tool-bar/index.ts
deleted file mode 100644
index 4f6c19526..000000000
--- a/src/components-FolderPage/feature-folder-tool-bar/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-export * from "./FolderToolBar";
diff --git a/src/components-FolderPage/ui-add-folder-button/AddFolderButton.module.scss b/src/components-FolderPage/ui-add-folder-button/AddFolderButton.module.scss
deleted file mode 100644
index 4364f07b9..000000000
--- a/src/components-FolderPage/ui-add-folder-button/AddFolderButton.module.scss
+++ /dev/null
@@ -1,30 +0,0 @@
-@import "@/common/styles/global.scss";
-
-.container {
- display: flex;
- align-items: center;
- column-gap: 0.4rem;
- font-size: 1.6rem;
- font-weight: 500;
-
- height: 3.5rem;
- padding: 0 2.4rem;
- border-radius: 2rem;
- border: 0.1rem solid $color-white;
- background-color: $color-primary;
- color: $color-gray10;
-
- @include tablet {
- padding: 0;
- background-color: transparent;
- color: $color-primary;
- }
-}
-
-.icon {
- fill: $color-gray10;
-
- @include tablet {
- fill: $color-primary;
- }
-}
diff --git a/src/components-FolderPage/ui-add-folder-button/AddFolderButton.tsx b/src/components-FolderPage/ui-add-folder-button/AddFolderButton.tsx
deleted file mode 100644
index 8feca892a..000000000
--- a/src/components-FolderPage/ui-add-folder-button/AddFolderButton.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import styles from "./AddFolderButton.module.scss";
-import classNames from "classnames/bind";
-import { ReactComponent as AddIcon } from "./add.svg"; // TODO: IMAGE 컴포넌트로
-
-const cx = classNames.bind(styles);
-
-interface AddFolderButtonProps {
- onClick: () => void;
-}
-
-export const AddFolderButton: React.FC