Lightning Component to show Date, Time and Greeting
Lightning Aura Component that shows current Date and Time with Greeting. Screenshot: - Component: - ViewDateTimeAndGreeting.cmp <aura:component implements="flexipage:availableForAllPageTypes"> <aura:handler name="init" value="{!this}" action="{!c.handleTime}" /> <aura:attribute name="hour" type="Integer" /> <aura:attribute name="minute" type="Integer" /> <aura:attribute name="period" type="String" /> <aura:attribute name="day" type="String" /> <aura:attribute name="date" type="Integer" /> <aura:attribute name="month" type="String" /> <aura:attribute name="year" type="String" /> <aura:attribute name="greet" type="String" default="Hello !" /> <aura:attribute name=...