grafana/public/app/features/dashboard/dashgrid/PanelPluginNotFound.tsx
2018-11-12 17:54:44 +01:00

17 lines
318 B
TypeScript

import _ from 'lodash';
import React, { PureComponent } from 'react';
interface Props {
pluginId: string;
}
export class PanelPluginNotFound extends PureComponent<Props> {
constructor(props) {
super(props);
}
render() {
return <h2>Panel plugin with id {this.props.id} could not be found</h2>;
}
}