refactor: update import prefix with alias (#1433)

This commit is contained in:
boojack
2023-04-01 16:03:14 +08:00
committed by GitHub
parent b03778fa73
commit 89ab57d738
71 changed files with 239 additions and 225 deletions

View File

@ -1,12 +1,12 @@
import { CssVarsProvider } from "@mui/joy";
import { useEffect, useRef } from "react";
import { createRoot } from "react-dom/client";
import { Provider } from "react-redux";
import { ANIMATION_DURATION } from "../../helpers/consts";
import store from "../../store";
import { useDialogStore } from "../../store/module";
import { CssVarsProvider } from "@mui/joy";
import theme from "../../theme";
import "../../less/base-dialog.less";
import { ANIMATION_DURATION } from "@/helpers/consts";
import store from "@/store";
import { useDialogStore } from "@/store/module";
import theme from "@/theme";
import "@/less/base-dialog.less";
interface DialogConfig {
dialogName: string;