grafana/public/app/plugins/datasource/loki/components/LokiStartPage.tsx
2019-02-04 11:25:07 +01:00

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>
);
}
}