I have feature component with form and few tables. And I would like to have a wrapper component which I can use in feature component wrapping in a wrapper component. To be detailed,
In wrapper component, my wrapper.component.html will have just a div with some classes.
<div class="something"></div>
In feature component, feature.component.html would be :
<my-wrapper>
<div>with some data</div>
<form></form>
</my-wrapper>
But my content inside my-wrapper is not getting loaded. Can you help me out?