mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
|
import React, { FC } from 'react';
|
||
|
import { RouteComponentProps } from '@reach/router';
|
||
|
|
||
|
const Config: FC<RouteComponentProps> = () => <div>Config page</div>
|
||
|
|
||
|
export default Config;
|