Created
March 1, 2019 16:02
-
-
Save dlferro/757ffabf8d8d3d946d28bbbdd7fa1656 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 { 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