Created
February 20, 2019 18:01
-
-
Save choudharymanish8585/65d5c51b81a8061050f9289462dc4840 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
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes"> | |
<!-- searchFormSubmit event handler to call aura method 'searchCars' of | |
CarSearchResult component --> | |
<aura:handler name="searchFormSubmit" event="c:SearchFormSubmitEvent" action="{!c.doFormSubmit}" /> | |
<!-- Top CarSeachForm Component --> | |
<lightning:card title="Search Your Car" class="bottom_margin"> | |
<c:CarSearchForm /> | |
</lightning:card> | |
<!-- CarSearchReult component which has CarTile component nested --> | |
<lightning:card title="Matching Cars" class="bottom_margin"> | |
<c:CarSearchResult aura:id="carSearchResult"/> | |
</lightning:card> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment