prometheus/web/ui/react-app/src/pages/Flags.tsx
Boyko 8afa8452fd reach router integration initial commit (#6232)
Signed-off-by: blalov <boyko.lalov@tick42.com>
2019-10-27 22:03:39 +01:00

7 lines
180 B
TypeScript

import React, { FC } from 'react';
import { RouteComponentProps } from '@reach/router';
const Flags : FC<RouteComponentProps> = () => <div>Flags page</div>
export default Flags;