Created
April 1, 2020 18:12
-
-
Save kevinchisholm/fd3494cc1362e6188a5adbc9353861d3 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' | |
} | |
constructor() {} | |
ngOnInit() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment