Whenever we are using withMappable in our React SPA, that component is wrapped with an additional div.
Example:-
withMappable of Test component results in the following DOM tree,
.
.
.
div (the additional div which was not added by us)
Test
div
.
.
.
Is there any way to configure withMappable to not wrap our component with an additional div?