Skip to content

Instantly share code, notes, and snippets.

@sebastienlevert
Created December 5, 2017 14:28
Show Gist options
  • Save sebastienlevert/6deb676a2a1f3cecad5c37a7b298edcc to your computer and use it in GitHub Desktop.
Save sebastienlevert/6deb676a2a1f3cecad5c37a7b298edcc to your computer and use it in GitHub Desktop.
import { Component, Input, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'angular-material',
templateUrl: 'angular-material.html',
styleUrls: [ 'angular-material.scss' ],
encapsulation: ViewEncapsulation.None
})
export class AngularMaterial {
@Input() public name: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment