I have common details view in my react app. Right now my detail view URL is like that
blog-details/:blogId
But I want to change the URL like this
host.com/{blog-title}/{blog-type}/{blog-id}
how can I do it? I'm using react-router and I want to use single details to view component with a different dynamic URL slug.
path="/:blogTitle/:blogType/:blogId"prop, something like this? Please include a Minimal, Complete, and Reproducible code example of your attempt.