Can someone suggest me if I would like to have wrapper component such as column control.
Should I use responsivegrid or newpar?
component html:
<div>
<div data-sly-resource="${ @ resourceType='wcm/foundation/components/responsivegrid'}"></div>
<div data-sly-resource="${ @ resourceType='wcm/foundation/components/responsivegrid'}"></div>
</div>
Issue with this is , template displaying only one responsivegrid . If I have dummy path name for each sly-resource such as
<div data-sly-resource="${'container1' @ resourceType='wcm/foundation/components/responsivegrid'}"></div>
<div data-sly-resource="${'container2' @ resourceType='wcm/foundation/components/responsivegrid'}"></div>
, I do not see responsivegrids at all .
Thanks.