mirror of https://github.com/grafana/grafana
parent
94ac522109
commit
0792c182cc
@ -0,0 +1,17 @@ |
||||
import React, { PureComponent } from 'react'; |
||||
|
||||
interface Props {} |
||||
|
||||
export class StackdriverTemplateQueryCtrl extends PureComponent<Props> { |
||||
constructor(props) { |
||||
super(props); |
||||
} |
||||
|
||||
componentDidMount() { |
||||
console.log('componentDidMount'); |
||||
} |
||||
|
||||
render() { |
||||
return <h1>Hello Stackdriver Template Query</h1>; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue