Given the following:
<custom_element_a>
<custom_element_b></custom_element_b>
</custom_element_a>
Suppose that custom_element_b must always be a direct child of custom_element_a, although custom_element_a can also live on its own.
Are there any best practices that should be followed when implementing custom elements having a dependency relationship such as the above? E.g. should custom_element_b be implemented in the same file as custom_element_a?