mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fixed logging start page
This commit is contained in:
@@ -21,7 +21,7 @@ const CHEAT_SHEET_ITEMS = [
|
||||
|
||||
export default (props: any) => (
|
||||
<div>
|
||||
<h1>PromQL Cheat Sheet</h1>
|
||||
<h2>PromQL Cheat Sheet</h2>
|
||||
{CHEAT_SHEET_ITEMS.map(item => (
|
||||
<div className="cheat-sheet-item" key={item.expression}>
|
||||
<div className="cheat-sheet-item__title">{item.title}</div>
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
|
||||
import PromCheatSheet from './PromCheatSheet';
|
||||
|
||||
export default class PromStart extends PureComponent<any> {
|
||||
interface Props {
|
||||
onClickExample: () => void;
|
||||
}
|
||||
|
||||
export default class PromStart extends PureComponent<Props> {
|
||||
render() {
|
||||
return (
|
||||
<div className="grafana-info-box">
|
||||
|
||||
Reference in New Issue
Block a user