Skip to content

Instantly share code, notes, and snippets.

@dlferro
Created March 1, 2019 16:02
Show Gist options
  • Save dlferro/757ffabf8d8d3d946d28bbbdd7fa1656 to your computer and use it in GitHub Desktop.
Save dlferro/757ffabf8d8d3d946d28bbbdd7fa1656 to your computer and use it in GitHub Desktop.
import { LightningElement, track } from 'lwc';
export default class HelloIteration extends LightningElement {
@track
contacts = [
{
Id: 1,
Name: 'Amy Taylor',
Title: 'VP of Engineering',
},
{
Id: 2,
Name: 'Michael Jones',
Title: 'VP of Sales',
},
{
Id: 3,
Name: 'Jennifer Wu',
Title: 'CEO',
},
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment