Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created February 24, 2021 23:56
Show Gist options
  • Save andrewarosario/4451461d3de1bab9da52287bf846055c to your computer and use it in GitHub Desktop.
Save andrewarosario/4451461d3de1bab9da52287bf846055c to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-user-detail',
templateUrl: './user-detail.component.html',
providers: [ ROUTE_ID_PROVIDERS ]
})
export class UserDetailComponent {
constructor(
@Inject(ROUTE_ID) public userId$: Observable<string>
) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment