1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 11:33:09 +01:00

Indepth guide about Routing (Beginner Friendly) (#2785)

Talks about how the development of single-page websites or mobile applications that permit navigating without refreshing the page. Additionally, how react-router allows us to access browser history functionalities while preserving the correct application view, how component-based routing plays a huge role, and much more.
This commit is contained in:
Sojin Samuel 2022-10-29 18:44:01 +05:30 committed by GitHub
parent e6840173b9
commit 8ef69d19ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,7 @@
# Routing
Routing is an essential concept in Single Page Applications (SPA). When your application is divided into separated logical sections, and all of them are under their own URL, your users can easily share links among each other.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://teachingbee.in/how-to-use-routing-in-react-js/'>How to use Routing in React JS: A Comprehensive Guide. </BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=59IXY5IDrBA'>React Router 6 Tutorial for Beginners. </BadgeLink>