Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Created July 16, 2018 01:10
Show Gist options
  • Save choudharymanish8585/cdb1f51bd259a63eac37cc125420958b to your computer and use it in GitHub Desktop.
Save choudharymanish8585/cdb1f51bd259a63eac37cc125420958b to your computer and use it in GitHub Desktop.
<!--Exntends Base Component in Component Definition -->
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes"
extends="c:Base" controller="AccountController" access="global" >
<aura:attribute name="data" type="Account[]"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<aura:iteration items="{!v.data}" var="acc">
<p><lightning:formattedText value="{!acc.Name}" /></p>
</aura:iteration>
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment