LokiStartPage.tsx 417 B

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