From 3aff2a1f4cf1efdc0ac555f19c53b421775c60fe Mon Sep 17 00:00:00 2001
From: Lucas Schoenfelder <les17@inf.ufpr.br>
Date: Mon, 8 Jun 2020 17:04:18 -0300
Subject: [PATCH] added route to upload page

---
 src/App.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/App.js b/src/App.js
index 7f638397..66a090e3 100644
--- a/src/App.js
+++ b/src/App.js
@@ -43,6 +43,7 @@ import TabPlataformaMEC from './Pages/TabsHelp/TabPlataformaMEC';
 import ItemStore from './Pages/ItemStore.js'
 import EditProfilePage from './Pages/EditProfilePage.js'
 import PublicUserPage from './Pages/PublicUserPage.js'
+import UploadPage from './Pages/UploadPage.js'
 
 export default function App(){
   // eslint-disable-next-line
@@ -101,6 +102,7 @@ export default function App(){
         <Route path="/recuperar-senha" component={PasswordRecoveryPage}/>
         <Route path="/usuario-publico/:userId" component={PublicUserPage}/>
         <Route path='/professor' component={PageProfessor}/>
+        <Route path="/upload" component={UploadPage}/>
         <Route path='/loja' component={ItemStore} />
       </Switch>
       <EcFooter/>
-- 
GitLab