summaryrefslogtreecommitdiffstats
path: root/frontend/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/App.js')
-rw-r--r--frontend/src/App.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/App.js b/frontend/src/App.js
index 89f3e1c..38d8aef 100644
--- a/frontend/src/App.js
+++ b/frontend/src/App.js
@@ -7,6 +7,7 @@ import Home from './Home';
import userState from './UserState';
import './App.css';
import axios from './axios';
+import Activate from './Activate';
const App = () => {
useEffect(() => {
@@ -28,6 +29,7 @@ const App = () => {
<Router>
<Login path="/login" />
<Register path="/register" />
+ <Activate path="/activate/:activationToken" />
<Home path="/" exact />
</Router>
</div>