mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
23 lines
457 B
TypeScript
23 lines
457 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import DatasourceSrv from 'app/features/plugins/datasource_srv';
|
|
|
|
interface Props {
|
|
query: string;
|
|
datasourceSrv: DatasourceSrv;
|
|
isValid: any;
|
|
}
|
|
|
|
export class StackdriverTemplateQueryCtrl extends PureComponent<Props> {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
componentDidMount() {
|
|
console.log('componentDidMount');
|
|
}
|
|
|
|
render() {
|
|
return <h1>Hello Stackdriver Template Query</h1>;
|
|
}
|
|
}
|