Skip to content

Instantly share code, notes, and snippets.

@painedpineapple
Created September 19, 2019 22:43
Show Gist options
  • Save painedpineapple/1558737513c6411777730dc10bd4d029 to your computer and use it in GitHub Desktop.
Save painedpineapple/1558737513c6411777730dc10bd4d029 to your computer and use it in GitHub Desktop.
type t('a) = (. Js.t('a)) => React.element;
[@bs.module "google-maps-react"]
external _make: {. "apiKey": string} => t('a) = "GoogleApiWrapper";
let wrap = (apiKey: string, component) => {
_make({"apiKey": apiKey})(. component);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment