mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import { QueryEditorHelpProps } from '@grafana/data';
|
|
import InfluxCheatSheet from './InfluxCheatSheet';
|
|
|
|
export default class InfluxStartPage extends PureComponent<QueryEditorHelpProps> {
|
|
render() {
|
|
return <InfluxCheatSheet onClickExample={this.props.onClickExample} />;
|
|
}
|
|
}
|