aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/App.js')
-rw-r--r--webui/src/App.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/App.js b/webui/src/App.js
index ddab0691..9cb3cdc7 100644
--- a/webui/src/App.js
+++ b/webui/src/App.js
@@ -6,7 +6,7 @@ import CssBaseline from "@material-ui/core/CssBaseline";
import Toolbar from "@material-ui/core/Toolbar";
import Typography from "@material-ui/core/Typography";
-import Bug from "./Bug";
+import BugPage from "./BugPage";
const Home = () => <h1>Home</h1>;
@@ -22,7 +22,7 @@ const App = ({ location }) => (
</AppBar>
<Switch>
<Route path="/" exact component={Home} />
- <Route path="/bug/:id" exact component={Bug} />
+ <Route path="/bug/:id" exact component={BugPage} />
</Switch>
</React.Fragment>
);