Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Created February 20, 2019 18:01
Show Gist options
  • Save choudharymanish8585/65d5c51b81a8061050f9289462dc4840 to your computer and use it in GitHub Desktop.
Save choudharymanish8585/65d5c51b81a8061050f9289462dc4840 to your computer and use it in GitHub Desktop.
<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