Slide 7
Slide 7 text
const routes: Routes = [
{
path: 'connect',
component: ConnectComponent
},
{
path: 'profile',
component: ProfileComponent,
},
{
path: ‘**’,
component: WildCardComponent
}
Tip
Do not place the
wildcard route before
any other,
as the route states are
checked in the order
defined in the
configuration.
configure the router states