Created
April 1, 2020 18:16
-
-
Save kevinchisholm/aea0e07276f7e5ac430c8610d1eb85d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
Component, | |
OnInit | |
} from '@angular/core'; | |
@Component({ | |
selector: 'app-test-component', | |
templateUrl: './test-component.component.html', | |
styleUrls: ['./test-component.component.css'] | |
}) | |
export class TestComponentComponent implements OnInit { | |
customersAttended = { | |
name: 'John Doe', | |
date: '2/14/2020', | |
cost: '25', | |
password: 'secret' | |
} | |
constructor() {} | |
ngOnInit() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment