buli
2022-04-26 e5675c554cfbdf41b1281a96740b941a0be49d7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<aura:component implements="force:hasRecordId,flexipage:availableForAllPageTypes"
                access="global">
    
    <aura:attribute name="recordId" type="Id"/>
    
    <aura:attribute name="principal" type="Integer" default="200000"/>
    <aura:attribute name="years" type="Integer" default="30"/>
    <aura:attribute name="rate" type="Integer" default="5"/>
    
    <lightning:card iconName="utility:chart" title="Mortgage Calculator">
        <c:MortgageCalculator recordId="{!v.recordId}" principal="{!v.principal}" years="{!v.years}" rate="{!v.rate}"/>
    </lightning:card>
    
</aura:component>