## Angular Routing – Basics
### What is Routing?
Routing allows navigation between different views without reloading the page.
### Why Routing is Important?
- Improves user experience
- Supports Single Page Applications
- Makes applications structured
### Router Module Setup
const routes: Routes = [
{ path: 'home', component: HomeComponent },
{ path: 'about', component: AboutComponent }
];
### Router Outlet
### Navigation Links
Home
### Practical Work Done
- Created routes
- Linked multiple components
- Used router-outlet
- Navigated without page reload
### Learning Outcome
Learned how Angular handles client-side navigation efficiently.