Getting below error while using angular and md bootstrap.
ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'About'
Error: Cannot match any routes. URL Segment: 'About' at enter code
HTML
<li class="nav-item">
<a class="nav-link waves-light" routerLink='/About' mdbWavesEffect>About US</a>
</li>
MODULE TS
import { AppRoutingModule } from './app-routing.module';
const appRoutes: Routes = [
{ path: 'home', component: HomeComponent , pathMatch: 'prefix'},
{ path: 'about', component: AboutComponent , pathMatch: 'prefix'},
{ path: 'contact', component: ContactComponent , pathMatch: 'prefix'}
];
imports: [ RouterModule.forRoot(appRoutes , { enableTracing: true }), ]