EVOLUTION-MANAGER
Edit File: InfluxStartPage.tsx
import React, { PureComponent } from 'react'; import { ExploreStartPageProps } from '@grafana/data'; import InfluxCheatSheet from './InfluxCheatSheet'; export default class InfluxStartPage extends PureComponent<ExploreStartPageProps> { render() { return <InfluxCheatSheet onClickExample={this.props.onClickExample} />; } }