style(ui): eslint-sort-imports

This commit is contained in:
Fu Diwei
2025-01-02 12:50:38 +08:00
parent 1588179bc9
commit b6dd2248c8
51 changed files with 84 additions and 137 deletions

View File

@@ -1,4 +1,4 @@
import { cloneElement, createElement, Fragment, isValidElement, useMemo } from "react";
import { Fragment, cloneElement, createElement, isValidElement, useMemo } from "react";
export type UseTriggerElementOptions = {
onClick?: (e: MouseEvent) => void;

View File

@@ -1,5 +1,5 @@
import { useRef } from "react";
import { pick, isArray } from "radash";
import { isArray, pick } from "radash";
import { shallow } from "zustand/shallow";
type MaybeMany<T> = T | readonly T[];