Skip to content

Instantly share code, notes, and snippets.

@shhdharmen
Created January 31, 2019 10:44
Show Gist options
  • Save shhdharmen/cedbde29737bd82bdf0327156744085d to your computer and use it in GitHub Desktop.
Save shhdharmen/cedbde29737bd82bdf0327156744085d to your computer and use it in GitHub Desktop.
import { Component, OnInit, Inject } from '@angular/core';
import { MAT_DIALOG_DATA } from '@angular/material';
@Component({
selector: 'app-dialog',
templateUrl: './dialog.component.html',
styleUrls: ['./dialog.component.scss']
})
export class DialogComponent implements OnInit {
constructor(@Inject(MAT_DIALOG_DATA) public data: DialogData) { }
ngOnInit() {
}
}
export interface DialogData {
themeColor: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment