Codemod verified
Regularly tested and maintained by our engineers and codemod expert community.
React-router
migration
byalexbit-codemod
React Router/4/Replace Param Prop
Last update
Jul 24, 2024
Replaces params
prop passed by react-router with match.params
.
Before
const PostEdit = ({ params }) => (<div><h1>Post {params.id}</h1></div>);
After
const PostEdit = ({ match }) => (<div><h1>Post {match.params.id}</h1></div>);
Build custom codemods
Use AI-powered codemod studio and automate undifferentiated tasks for yourself, colleagues or the community