Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The form can then be accessed by navigating to the following path: smart-developer-tools, either with a simple navigation menu or by simply pointing your browser to http://localhost:4200/(view:smart-developer-tools) or by navigating to the same path with the SmartNavigationService, as it can be seen below:

Code Block
languagejs
constructor(private navigation: SmartNavigationService) {}

ngOnInit() {
  this.navigation.navigate('smart-developer-tools');
}

...