grafana/public/app/plugins/datasource/loki/components/LokiStartPage.tsx
2018-12-06 00:42:31 +01:00

17 lines
399 B
TypeScript

import React, { PureComponent } from 'react';
import LokiCheatSheet from './LokiCheatSheet';
interface Props {
onClickExample: () => void;
}
export default class LokiStartPage extends PureComponent<Props> {
render() {
return (
<div className="grafana-info-box grafana-info-box--max-lg">
<LokiCheatSheet onClickExample={this.props.onClickExample} />
</div>
);
}
}