| 12345678910111213141516171819202122232425 |
- import { Typography } from "antd";
- import { lookup } from "../../reducers/command";
- import store from "../../store";
- interface IWidget {
- search?: string;
- children?: React.ReactNode;
- }
- const LookupWidget = ({ search, children }: IWidget) => {
- return (
- <Typography.Text
- style={{ cursor: "pointer" }}
- onClick={() => {
- //发送点词查询消息
- if (typeof search === "string") {
- store.dispatch(lookup(search));
- }
- }}
- >
- {children}
- </Typography.Text>
- );
- };
- export default LookupWidget;
|