mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
17 lines
399 B
TypeScript
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>
|
|
);
|
|
}
|
|
}
|