parameter modify

This commit is contained in:
geek 2017-08-30 16:25:45 +09:00
parent 6a8b5dd3c6
commit d3aa30e9f3

View File

@ -9,7 +9,6 @@ import {
import SignIn from '../member/SignIn';
import SignUp from '../member/SignUp';
import EmailConfirm from '../member/EmailConfirm';
import ForgotPassword from '../member/ForgotPassword';
import PWConfirm from '../member/PWConfirm';
import Modify from '../member/Modify';
@ -39,7 +38,6 @@ class AccountLayout extends React.Component<Props, State> {
<Route path={`${this.props.match.url}/signin`} component={SignIn}/>
<Route path={`${this.props.match.url}/signup`} component={SignUp}/>
<Route path={`${this.props.match.url}/pw_confirm`} component={PWConfirm}/>
<Route path={`${this.props.match.url}/check_email`} component={EmailConfirm}/>
<Route path={`${this.props.match.url}/forgot_password`} component={ForgotPassword}/>
<Route path={`${this.props.match.url}/modify`} component={Modify}/>
</Switch>