Skip to content

Instantly share code, notes, and snippets.

@manivelarjunan
Created December 2, 2018 22:35
Show Gist options
  • Save manivelarjunan/bbff9cb48f26e31dceeac9586e3a4785 to your computer and use it in GitHub Desktop.
Save manivelarjunan/bbff9cb48f26e31dceeac9586e3a4785 to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
@Injectable()
export class UserService {
user = {
name: 'Mannie'
};
getUser() {
return this.user;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment