Last active
March 6, 2020 14:42
-
-
Save choudharymanish8585/94dd24117ba7329445d6e414a228b651 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:availableForRecordHome,force:hasRecordId"> | |
<lightning:layout horizontalAlign="center"> | |
<lightning:layoutItem> | |
<lightning:select name='selectItem' aura:id="carType" label='All Types' | |
variant="label-hidden" value=""> | |
<option value="" text="All Types" /> | |
<option value="" text="Sports Car" /> | |
<option value="" text="Luxury Car" /> | |
</lightning:select> | |
</lightning:layoutItem> | |
<lightning:layoutItem padding="around-medium"> | |
<lightning:button label="Search" variant="brand" /> | |
<lightning:button variant="neutral" label="New" /> | |
</lightning:layoutItem> | |
</lightning:layout> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment