refactor: adjust base components export

This commit is contained in:
GyDi
2022-11-20 22:03:55 +08:00
parent 32b72f0ef6
commit dace993c21
34 changed files with 44 additions and 66 deletions

View File

@@ -5,10 +5,8 @@ import { useTranslation } from "react-i18next";
import { Button, Box, Typography } from "@mui/material";
import { useVerge } from "@/hooks/use-verge";
import { getClashInfo, openWebUrl } from "@/services/cmds";
import { BaseDialog, BaseEmpty, DialogRef, Notice } from "@/components/base";
import { WebUIItem } from "./web-ui-item";
import { BaseDialog, DialogRef } from "@/components/base";
import BaseEmpty from "@/components/base/base-empty";
import Notice from "@/components/base/base-notice";
export const WebUIViewer = forwardRef<DialogRef>((props, ref) => {
const { t } = useTranslation();