import React from 'react'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; import { Footer, Header } from './components'; import { Forum, Home, NotFound, Oauth, Realms, UserAccount } from './pages'; // styling import './scss/index.scss'; interface Props {} interface State {} export class Routes extends React.Component { public render() { return (
); } }