2018-10-30 10:14:01 -05:00
|
|
|
import React, { PureComponent } from 'react';
|
2018-12-05 16:13:57 -06:00
|
|
|
import LokiCheatSheet from './LokiCheatSheet';
|
2019-02-04 04:25:07 -06:00
|
|
|
import { ExploreStartPageProps } from '@grafana/ui';
|
2018-10-30 10:14:01 -05:00
|
|
|
|
2019-02-04 04:25:07 -06:00
|
|
|
export default class LokiStartPage extends PureComponent<ExploreStartPageProps> {
|
2018-10-30 10:14:01 -05:00
|
|
|
render() {
|
|
|
|
return (
|
2018-12-04 08:04:55 -06:00
|
|
|
<div className="grafana-info-box grafana-info-box--max-lg">
|
2018-12-05 16:13:57 -06:00
|
|
|
<LokiCheatSheet onClickExample={this.props.onClickExample} />
|
2018-10-30 10:14:01 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|