Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active February 24, 2021 23:55
Show Gist options
  • Save andrewarosario/422c4116c1d06c71a6fde704e0707b67 to your computer and use it in GitHub Desktop.
Save andrewarosario/422c4116c1d06c71a6fde704e0707b67 to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-user-detail',
templateUrl: './user-detail.component.html',
})
export class UserDetailComponent {
public userId$ = this.route.paramMap.pipe(map(params => params.get('id')));
constructor(private route: ActivatedRoute) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment