Created
July 16, 2018 01:10
-
-
Save choudharymanish8585/cdb1f51bd259a63eac37cc125420958b 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
<!--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