diff --git a/web/ui/react-app/src/pages/Alerts.tsx b/web/ui/react-app/src/pages/Alerts.tsx index 937f5128e..e06163d5c 100644 --- a/web/ui/react-app/src/pages/Alerts.tsx +++ b/web/ui/react-app/src/pages/Alerts.tsx @@ -1,7 +1,15 @@ import React, { FC } from 'react'; import { RouteComponentProps } from '@reach/router'; import PathPrefixProps from '../PathPrefixProps'; +import { Alert } from 'reactstrap'; -const Alerts: FC = props =>
Alerts page
; +const Alerts: FC = ({ pathPrefix }) => ( + <> +

Alerts

+ + This page is still under construction. Please try it in the Classic UI. + + +); export default Alerts; diff --git a/web/ui/react-app/src/pages/Rules.tsx b/web/ui/react-app/src/pages/Rules.tsx index 927f27bc0..e07ccb0bb 100644 --- a/web/ui/react-app/src/pages/Rules.tsx +++ b/web/ui/react-app/src/pages/Rules.tsx @@ -1,7 +1,15 @@ import React, { FC } from 'react'; import { RouteComponentProps } from '@reach/router'; import PathPrefixProps from '../PathPrefixProps'; +import { Alert } from 'reactstrap'; -const Rules: FC = () =>
Rules page
; +const Rules: FC = ({ pathPrefix }) => ( + <> +

Rules

+ + This page is still under construction. Please try it in the Classic UI. + + +); export default Rules; diff --git a/web/ui/react-app/src/pages/Services.tsx b/web/ui/react-app/src/pages/Services.tsx index 531392134..e28e20b2b 100644 --- a/web/ui/react-app/src/pages/Services.tsx +++ b/web/ui/react-app/src/pages/Services.tsx @@ -1,7 +1,15 @@ import React, { FC } from 'react'; import { RouteComponentProps } from '@reach/router'; import PathPrefixProps from '../PathPrefixProps'; +import { Alert } from 'reactstrap'; -const Services: FC = () =>
Services page
; +const Services: FC = ({ pathPrefix }) => ( + <> +

Service Discovery

+ + This page is still under construction. Please try it in the Classic UI. + + +); export default Services; diff --git a/web/ui/react-app/src/pages/Targets.tsx b/web/ui/react-app/src/pages/Targets.tsx index a8a50a64b..6351f0751 100644 --- a/web/ui/react-app/src/pages/Targets.tsx +++ b/web/ui/react-app/src/pages/Targets.tsx @@ -1,7 +1,15 @@ import React, { FC } from 'react'; import { RouteComponentProps } from '@reach/router'; import PathPrefixProps from '../PathPrefixProps'; +import { Alert } from 'reactstrap'; -const Targets: FC = () =>
Targets page
; +const Targets: FC = ({ pathPrefix }) => ( + <> +

Targets

+ + This page is still under construction. Please try it in the Classic UI. + + +); export default Targets;