I noticed that the component renders an additional DIV in the GoogleApiComponent file during the render (see line 119 in file).
Why not add ability for className on this DIV or use a different sort of wrapper using something like:
const wrapper = (props) => props.children;
So the additional div is not rendered? Or is there a reason a div was used?
I noticed that the component renders an additional DIV in the GoogleApiComponent file during the render (see line 119 in file).
Why not add ability for
classNameon this DIV or use a different sort of wrapper using something like:const wrapper = (props) => props.children;So the additional
divis not rendered? Or is there a reason adivwas used?