2019-10-27 14:03:39 -07:00
|
|
|
import React, { FC } from 'react';
|
|
|
|
import { RouteComponentProps } from '@reach/router';
|
2019-11-04 00:17:50 -08:00
|
|
|
import PathPrefixProps from '../PathPrefixProps';
|
2019-11-05 11:09:37 -08:00
|
|
|
import { Alert } from 'reactstrap';
|
2019-10-27 14:03:39 -07:00
|
|
|
|
2019-11-05 11:09:37 -08:00
|
|
|
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>
|
|
|
|
</>
|
|
|
|
);
|
2019-10-27 14:03:39 -07:00
|
|
|
|
|
|
|
export default Services;
|