mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
7 lines
180 B
TypeScript
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;
|