mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
* remove redundant sanitizeHTML abstraction Signed-off-by: blalov <boiskila@gmail.com> * organize folders Signed-off-by: blalov <boiskila@gmail.com> * move hooks outside common folder Signed-off-by: blalov <boiskila@gmail.com> * move PathPrefix interface in types Signed-off-by: blalov <boiskila@gmail.com> * remove config folder Signed-off-by: blalov <boiskila@gmail.com> * remove redundant snapshots Signed-off-by: blalov <boiskila@gmail.com> * rename common folder Signed-off-by: blalov <boiskila@gmail.com> * merge utils files Signed-off-by: Boyko Lalov <boiskila@gmail.com> * sync with master Signed-off-by: blalov <boiskila@gmail.com>
16 lines
474 B
TypeScript
16 lines
474 B
TypeScript
import React, { FC } from 'react';
|
|
import { RouteComponentProps } from '@reach/router';
|
|
import PathPrefixProps from '../../types/PathPrefixProps';
|
|
import { Alert } from 'reactstrap';
|
|
|
|
const Rules: FC<RouteComponentProps & PathPrefixProps> = ({ pathPrefix }) => (
|
|
<>
|
|
<h2>Rules</h2>
|
|
<Alert color="warning">
|
|
This page is still under construction. Please try it in the <a href={`${pathPrefix}/rules`}>Classic UI</a>.
|
|
</Alert>
|
|
</>
|
|
);
|
|
|
|
export default Rules;
|