Dynamically creating webpages based on user input
I am working on a project in React for scheduling group meetings. The idea is that users can create a club in the homepage, and then navigate to that club page. A user can be part of multiple clubs. How do I dynamically change the club page so that it shows the information of that specific club. Can you create custom URLs with router-dom for each club users create, or do I need to make it so that the single club page dynamically changes? How would I do that? Right now in our project, a user sees a list of clubs and they can click on one of them to navigate to a club page that is always the same for all clubs. Would the club page take the name of the clicked club, and dynamically change itself based on that?
React JS – Dynamically creating webpages based on user input
everyone person who is new to JS here. I am working on a project in ReactJS for scheduling group meetings. The idea is that users can create a club in the homepage, and then navigate to that club page. A user can be part of multiple clubs. How do I dynamically change the club page so that it shows the information of that specific club. Can you create custom URLs with router-dom for each club users create, or do I need to make it so that the single club page dynamically changes? How would I do that? Right now in our project, a user sees a list of clubs and they can click on one of them to navigate to a club page that is always the same for all clubs. Would the club page take the name of the clicked club, and dynamically change itself based on that?