import React from 'react'; import { useDashboardStore } from '../store/store'; import cn from 'classnames'; import { ItemMenu } from 'UI'; function WidgetWrapper(props) { const { widget } = props; // const store: any = useDashboardStore(); // const dashboard = store.selectedDashboard; // const siteId = store.siteId; return (
{/* */}
{widget.name} - {widget.position}
{ console.log('edit'); } }, ]} /> {/* */}
{/* */}
); } export default WidgetWrapper;