mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
14 lines
318 B
TypeScript
14 lines
318 B
TypeScript
import React, { PureComponent } from 'react';
|
|
|
|
import PromCheatSheet from './PromCheatSheet';
|
|
|
|
export default class PromStart extends PureComponent<any> {
|
|
render() {
|
|
return (
|
|
<div className="grafana-info-box">
|
|
<PromCheatSheet onClickExample={this.props.onClickExample} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|