import React, { FC } from 'react'; import { Route, Switch } from 'react-router-dom'; const Router: FC = () => (
Hello
About
); export default Router;