// @flow import * as React from "react"; import { Switch } from "react-router-dom"; import DelayedMount from "components/DelayedMount"; import FullscreenLoading from "components/FullscreenLoading"; import Route from "components/ProfiledRoute"; const Authenticated = React.lazy(() => import("components/Authenticated")); const AuthenticatedRoutes = React.lazy(() => import("./authenticated")); const KeyedDocument = React.lazy(() => import("scenes/Document/KeyedDocument")); const Login = React.lazy(() => import("scenes/Login")); export default function Routes() { return ( } > ); }