Skip to content

Instantly share code, notes, and snippets.

@ccoenraets
Last active December 9, 2018 11:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccoenraets/bd10c4a7aa77254b43c5 to your computer and use it in GitHub Desktop.
Save ccoenraets/bd10c4a7aa77254b43c5 to your computer and use it in GitHub Desktop.
<aura:component controller="CandidateController" implements="force:appHostable">
<ltng:require styles="/resource/slick/slick.css,/resource/slick/slick-theme.css"
scripts="/resource/jquery,/resource/slick/slick.min.js"
afterScriptsLoaded="{!c.doInit}"/>
<aura:attribute name="contacts" type="Contact[]"/>
<div class="carousel">
<aura:iteration items="{!v.contacts}" var="contact">
<c:CandidateView contact="{!contact}"/>
</aura:iteration>
</div>
</aura:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment