Skip to content

Instantly share code, notes, and snippets.

@mbreton
Created April 5, 2017 18:09
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 mbreton/b9d52f99858c178bcd814bb75078016e to your computer and use it in GitHub Desktop.
Save mbreton/b9d52f99858c178bcd814bb75078016e to your computer and use it in GitHub Desktop.
toto
import { Component, Input } from '@angular/core';
import { User } from '../../shared';
@Component({
selector: 'jsr-user-form',
templateUrl: './user-form.component.html',
styleUrls: ['./user-form.component.scss']
})
export class UserFormComponent {
@Input() user: User;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment