import * as React from 'react'; import { Switch } from 'react-router'; import { Link, Route } from 'react-router-dom'; // import { TopBar } from './containers/test/TopBar'; import { SignUp } from './containers/test/SignUp'; import { SignIn } from './containers/test/SignIn'; import { PWChange } from './containers/test/PWChange'; import { ProbeDown } from './containers/test/ProbeDown'; import { DiscoveryDetails } from './containers/test/DiscoveryDetails' import { Components } from './containers/test/Components'; // import { Layout } from './containers/test/layout/Layout' export class Blank extends React.Component { render() { return (

































); } } export class Routes extends React.Component { constructor(props: any, context: any) { super(props, context); } render() { return (
{/*

React Redux sample

  • TopBar
  • Signup
  • SignIn
  • PWChange
  • ProbeDown
  • DiscoveryDetails
  • Insanity
  • */}
    ); } }