InfluxStartPage.tsx 425 B

12345678910111213
  1. import React, { PureComponent } from 'react';
  2. import { ExploreStartPageProps } from '@grafana/ui';
  3. import InfluxCheatSheet from './InfluxCheatSheet';
  4. export default class InfluxStartPage extends PureComponent<ExploreStartPageProps> {
  5. render() {
  6. return (
  7. <div className="grafana-info-box grafana-info-box--max-lg">
  8. <InfluxCheatSheet onClickExample={this.props.onClickExample} />
  9. </div>
  10. );
  11. }
  12. }