chore: Enable parameterized route profiling

This commit is contained in:
Tom Moor
2021-01-22 23:02:12 -08:00
parent 7b87fea4f4
commit b3cd78c833
4 changed files with 18 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
// @flow
import * as React from "react";
import { Switch, Route } from "react-router-dom";
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"));