mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
17 lines
318 B
TypeScript
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>;
|
|
}
|
|
}
|