mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import LokiCheatSheet from './LokiCheatSheet';
|
|
import { ExploreStartPageProps } from '@grafana/ui';
|
|
|
|
export default class LokiStartPage extends PureComponent<ExploreStartPageProps> {
|
|
render() {
|
|
return (
|
|
<div className="grafana-info-box grafana-info-box--max-lg">
|
|
<LokiCheatSheet onClickExample={this.props.onClickExample} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|