Is it bad practice/design to nest components inside components using Flex 4? Should I simply be creating components and inserting them into my main application as below, or doesn't it matter?
<com:MyComp1>
<com:MyComp2>
<com:MyComp3>
<s:Label text="This is a test."/>
</com:MyComp3>
</com:MyComp2>
</com:MyComp1>