diff --git a/public/app/containers/AlertRuleList/AlertRuleList.tsx b/public/app/containers/AlertRuleList/AlertRuleList.tsx new file mode 100644 index 00000000000..ee5a38cb24c --- /dev/null +++ b/public/app/containers/AlertRuleList/AlertRuleList.tsx @@ -0,0 +1,94 @@ +import React from 'react'; +import classNames from 'classnames'; +import { inject, observer } from 'mobx-react'; +import PageHeader from 'app/core/components/PageHeader/PageHeader'; + +export interface IProps { + store: any; +} + +@inject('store') +@observer +export class AlertRuleList extends React.Component { + constructor(props) { + super(props); + + this.props.store.nav.load('alerting', 'alert-list'); + this.props.store.alerting.loadRules(); + } + + render() { + return ( +
+ +
+
+
+ + +
+