import React, { FC } from 'react'; import Navigation from './Navbar'; import { Container } from 'reactstrap'; import './App.css'; import { Router, Redirect } from '@reach/router'; import { Alerts, Config, Flags, Rules, Services, Status, Targets, TSDBStatus, PanelList } from './pages'; import PathPrefixProps from './PathPrefixProps'; const App: FC = ({ pathPrefix }) => { return ( <> {/* NOTE: Any route added here needs to also be added to the list of React-handled router paths ("reactRouterPaths") in /web/web.go. */} ); }; export default App;