[Refactor] Move DropdownMenu to _atoms directory.

This commit is contained in:
Sakamoto Shiina
2025-11-12 10:01:55 +09:00
parent b21a46e96e
commit dc3c236791
4 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import styles from "./DropdownMenu.module.scss"; import styles from "./_DropdownMenu.module.scss";
import clsx from "clsx"; import clsx from "clsx";
import ArrowLeftSvg from "@images/arrow_left.svg?react"; import ArrowLeftSvg from "@images/arrow_left.svg?react";
import { useStore_IsOpenedDropdownMenu } from "@store"; import { useStore_IsOpenedDropdownMenu } from "@store";

View File

@@ -1,5 +1,5 @@
import styles from "./ComputeDevice.module.scss"; import styles from "./ComputeDevice.module.scss";
import { DropdownMenu } from "../dropdown_menu/DropdownMenu"; import { DropdownMenu } from "../_atoms/_dropdown_menu/_DropdownMenu";
import { ActionButton } from "../action_button/ActionButton"; import { ActionButton } from "../action_button/ActionButton";
import HelpSvg from "@images/help.svg?react"; import HelpSvg from "@images/help.svg?react";
import { useStore_OpenedQuickSetting } from "@store" import { useStore_OpenedQuickSetting } from "@store"

View File

@@ -1,7 +1,7 @@
export { ActionButton } from "./action_button/ActionButton"; export { ActionButton } from "./action_button/ActionButton";
export { ComputeDevice } from "./compute_device/ComputeDevice"; export { ComputeDevice } from "./compute_device/ComputeDevice";
export { DeeplAuthKey, OpenWebpage_DeeplAuthKey } from "./deepl_auth_key/DeeplAuthKey"; export { DeeplAuthKey, OpenWebpage_DeeplAuthKey } from "./deepl_auth_key/DeeplAuthKey";
export { DropdownMenu } from "./dropdown_menu/DropdownMenu"; export { DropdownMenu } from "./_atoms/_dropdown_menu/_DropdownMenu";
export { Entry } from "./entry/Entry"; export { Entry } from "./entry/Entry";
export { EntryWithSaveButton } from "./entry_with_save_button/EntryWithSaveButton"; export { EntryWithSaveButton } from "./entry_with_save_button/EntryWithSaveButton";
export { HotkeysEntry } from "./hotkeys_entry/HotkeysEntry"; export { HotkeysEntry } from "./hotkeys_entry/HotkeysEntry";