• Steve J Cook
  • NEWBIE
  • 0 Points
  • Member since 2015
  • Consultant
  • Slalom Consulting


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
This code will not compile in the Dev. Console:
<!--docsample:nestedComponents-->
<aura:component>
    Observe!  Components within components!

    <docsample:helloHTML/>

    <docsample:helloAttributes whom="component composition"/>
</aura:component>


This code will compile:

<!--docsample:nestedComponents-->
<aura:component>
    Observe!  Components within components!

    <c:helloHTML/>

    <c:helloAttributes whom="component composition"/>
</aura:component>

The name space is wrong for the two nested components.  (Unless I am completely hallucinating!  And I might be - it's Friday!)