grafana/public/app/plugins/datasource/influxdb/components/InfluxStartPage.tsx

10 lines
330 B
TypeScript
Raw Normal View History

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} />;
}
}