Skip to content

Instantly share code, notes, and snippets.

@kevinchisholm
Created April 1, 2020 18:16
Show Gist options
  • Save kevinchisholm/aea0e07276f7e5ac430c8610d1eb85d1 to your computer and use it in GitHub Desktop.
Save kevinchisholm/aea0e07276f7e5ac430c8610d1eb85d1 to your computer and use it in GitHub Desktop.
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