refactor(react): normalize imports

This commit is contained in:
Elian Doran
2025-08-10 15:21:49 +03:00
parent 11f6462a31
commit 14e09f5ea0
17 changed files with 19 additions and 20 deletions

View File

@@ -1,9 +1,9 @@
import { useRef } from "preact/hooks";
import { t } from "../../services/i18n";
import { useEffect } from "react";
import { useEffect } from "preact/hooks";
import note_autocomplete, { Options, type Suggestion } from "../../services/note_autocomplete";
import type { RefObject } from "preact";
import { CSSProperties } from "preact/compat";
import type { CSSProperties } from "preact/compat";
interface NoteAutocompleteProps {
inputRef?: RefObject<HTMLInputElement>;