import { PureComponent } from 'react'; import { Trans } from '@grafana/i18n'; import { CanvasElementItem, CanvasElementProps } from '../element'; class NotFoundDisplay extends PureComponent { render() { const { config } = this.props; return (
{JSON.stringify(config, null, 2)} }} >

Not found:

{''}
); } } export const notFoundItem: CanvasElementItem = { id: 'not-found', name: 'Not found', description: 'Display when element type is not found in the registry', display: NotFoundDisplay, defaultSize: { width: 100, height: 100, }, getNewOptions: () => ({ config: {}, }), };