Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created September 2, 2017 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/17011ba06095b0d37a6797bda3fe722e to your computer and use it in GitHub Desktop.
Save gdyrrahitis/17011ba06095b0d37a6797bda3fe722e to your computer and use it in GitHub Desktop.
function route($stateProvider: ng.ui.IStateProvider) {
$stateProvider.state("home", {
url: "/home",
component: "todoHome"
})
.state("todo", {
url: "/todo/:id",
component: "todoCmp"
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment