Calling generic base component by extends
–Calling base component without passing any params
<aura:component controller="XXXXX" extends="c:Base" >
<aura:handler name="init" value="{!this}" action="{!c.doInit}"/>
({ doInit : function(component, event, helper) { helper.callServer( component, "c.getCertifications", function(response) { component.set('v.certifications', response); } ); } })
lightning abstract base super component CALLING GENERIC BASE COMPONENT USING EXTENDS W/PARAMS