refactor(settings): reorganize FolderPicker component and update layout

- Moved FolderPicker to a new folder structure for better organization.
- Updated the Settings page layout to enhance visual hierarchy by increasing the title size.
- Removed the old FolderPicker component file after restructuring.
This commit is contained in:
2025-04-14 08:55:36 +02:00
parent 2f26b5dfd9
commit 048fc38032
3 changed files with 6 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
import { createEffect, createSignal } from "solid-js";
import { listen } from "@tauri-apps/api/event";
import { FolderPicker } from "./FolderPicker";
import { createEffect, createSignal } from "solid-js";
import { sendImage } from "../network";
import { FolderPicker } from "./folder-picker/FolderPicker";
export function ImageViewer() {
const [latestImage, setLatestImage] = createSignal<string | null>(null);