refactor: adjust setting dialog component

This commit is contained in:
GyDi
2022-11-20 21:48:39 +08:00
parent 3dbc54c8ae
commit 32b72f0ef6
23 changed files with 845 additions and 988 deletions

View File

@@ -23,7 +23,7 @@ interface Props {
onCancel?: () => void;
}
const WebUIItem = (props: Props) => {
export const WebUIItem = (props: Props) => {
const {
value,
onlyEdit = false,
@@ -128,5 +128,3 @@ const WebUIItem = (props: Props) => {
</>
);
};
export default WebUIItem;