反応ルーターでこれを行うことは可能ですか?
<Route path="/:reset_password" component={ResetPassword} />
<Route path="/:create_password" component={CreatePassword}/>
異なるコンポーネントで異なるパラメーターを使用したい。上記のコードをテストしましたが、動作しません。これに変更すると、上記のコードが機能します。
<Route path="/something1/:reset_password" component={ResetPassword} />
<Route path="/something2/:create_password" component={CreatePassword}/>
助けてくれてありがとう