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