import { DetailsHTMLAttributes, FC } from 'react'; import { GetWidgetLayout } from './GetWidgetLayout'; export interface WidgetSlotViewProps extends DetailsHTMLAttributes { widgetType: string; widgetSlot: number; widgetConf: any; } export const WidgetSlotView: FC = props => { const { widgetType = null, widgetSlot = 0, widgetConf = null, className= '', ...rest } = props; return (
); };