Cleaned up email verification reducer logic

This commit is contained in:
Alexander Wong
2017-09-03 14:42:44 -06:00
parent a5df76d7e9
commit 4cadf5df3a
7 changed files with 35 additions and 99 deletions
+8
View File
@@ -15,6 +15,10 @@ import NoMatch from "./Static/NoMatch";
import Navbar from "./Navbar";
class App extends Component {
componentDidMount() {
}
render() {
const footSmash = {
display: "flex",
@@ -35,6 +39,10 @@ class App extends Component {
path="/auth/verify-email/:emailKey"
component={VerifyEmail}
/>
<Route
path="/auth/verify-email"
component={VerifyEmail}
/>
<PrivateRoute path="/auth/settings" component={Settings} />
<Route path="/auth/forgot-password" component={ForgotPassword} />
<Route path="/auth/reset-password/:uid/:token" component={ResetPassword} />