import { Popover } from "antd"; import { WarningOutlined } from "@ant-design/icons"; interface IWidget { children?: React.ReactNode; } const ParserErrorWidget = ({ children }: IWidget) => { return ( ); }; export default ParserErrorWidget;