import { UIWidgetDictionaryItem } from "@engine/App/UI/_actions/uiTypes"; import { FC } from "react"; type Props = { widget: UIWidgetDictionaryItem; }; const UIWidgetRenderer: FC = ({ widget }) => { const { component } = widget; const Component = component; return ; }; export default UIWidgetRenderer;