From 4f9e43b95eb01689f1f9a1598428851bfc9826e8 Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Tue, 29 Mar 2022 16:25:56 +1100 Subject: [PATCH] Chap05 -> Using route parameters -> Adding the question page route --- QandA/frontend/src/App.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/QandA/frontend/src/App.tsx b/QandA/frontend/src/App.tsx index e7ae2c6..511f2ac 100644 --- a/QandA/frontend/src/App.tsx +++ b/QandA/frontend/src/App.tsx @@ -11,6 +11,7 @@ import { AskPage } from './AskPage'; import { SearchPage } from './SearchPage'; import { SignInPage } from './SignInPage'; import { NotFoundPage } from './NotFoundPage'; +import { QuestionPage } from './QuestionPage'; function App() { return ( @@ -28,6 +29,7 @@ function App() { } /> } /> } /> + } /> } />