refactor(ui):修改文件名称形式。

This commit is contained in:
徐涛 2024-04-05 15:35:29 +08:00
parent 9c48156345
commit 86033cca39
4 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { useProducts } from "@/hooks/use-products"; import { useProducts } from "@/hooks/use_products";
import { useProductsStore } from "@/hooks/use-products-store"; import { useProductsStore } from "@/hooks/use_products_store";
import { ActionIcon, Box, Flex, Paper, Text, TextInput, Title, Tooltip } from "@mantine/core"; import { ActionIcon, Box, Flex, Paper, Text, TextInput, Title, Tooltip } from "@mantine/core";
import { IconDeselect, IconListCheck, IconSearch, IconX } from "@tabler/icons-react"; import { IconDeselect, IconListCheck, IconSearch, IconX } from "@tabler/icons-react";
import { isEmpty, not } from "ramda"; import { isEmpty, not } from "ramda";

View File

@ -1,5 +1,5 @@
import { useEffect } from "react"; import { useEffect } from "react";
import { useProductsStore } from "./use-products-store"; import { useProductsStore } from "./use_products_store";
type ProductSearchKeyword = string | undefined | null; type ProductSearchKeyword = string | undefined | null;