mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
This is a quick change because the release is about to be cut in a few hours and it would be good to clarify to users what the empty pages in the new UI are about. Signed-off-by: Julius Volz <julius.volz@gmail.com>
16 lines
495 B
TypeScript
16 lines
495 B
TypeScript
import React, { FC } from 'react';
|
|
import { RouteComponentProps } from '@reach/router';
|
|
import PathPrefixProps from '../PathPrefixProps';
|
|
import { Alert } from 'reactstrap';
|
|
|
|
const Services: FC<RouteComponentProps & PathPrefixProps> = ({ pathPrefix }) => (
|
|
<>
|
|
<h2>Service Discovery</h2>
|
|
<Alert color="warning">
|
|
This page is still under construction. Please try it in the <a href={`${pathPrefix}/service-discovery`}>Classic UI</a>.
|
|
</Alert>
|
|
</>
|
|
);
|
|
|
|
export default Services;
|