import { useIntl } from "react-intl";
import {
ProForm,
ProFormSelect,
ProFormText,
ProFormTextArea,
} from "@ant-design/pro-components";
import LangSelect from "../general/LangSelect";
import { DefaultOptionType } from "antd/lib/select";
interface IWidget {
meaningList?: string[];
channelList?: DefaultOptionType[];
}
const Widget = ({ meaningList, channelList }: IWidget) => {
const intl = useIntl();
return (
<>
>
);
};
export default Widget;