react-overlays
react-overlays copied to clipboard
Migrate to import * as React from 'react'
Ref https://github.com/facebook/react/pull/18102
does this make sense to change until they actually provide an esm build?
Rollup optimise import * as React from 'react' into import{createElement as a}from 'react'; which is not the case with default export prop access which may be side effectful.
Also it's a good for users to see these changes and start migration earlier.