import { useIntl } from "react-intl"; import { ProForm, ProFormText, ProFormTextArea, } from "@ant-design/pro-components"; import LangSelect from "../general/LangSelect"; import SelectCase from "./SelectCase"; import Confidence from "./Confidence"; type IWidgetDictCreate = { word?: string; }; const DictEditInnerWidget = (prop: IWidgetDictCreate) => { const intl = useIntl(); /* const onLangChange = (value: string) => { console.log(`selected ${value}`); }; const onLangSearch = (value: string) => { console.log("search:", value); }; */ return ( <>
语法信息
); }; export default DictEditInnerWidget;