3.3.4 • Published 3 years ago
epalacio-react-google-places-autocomplete v3.3.4
React Google Places Autocomplete
React component for easily use Google Places Autocomplete
Getting started
Install the latest version:
npm install --save react-google-places-autocomplete
  or
yarn add react-google-places-autocompleteUse the component!
import React from 'react';
import GooglePlacesAutocomplete from 'react-google-places-autocomplete';
const Component = () => (
  <div>
    <GooglePlacesAutocomplete
      apiKey="****"
    />
  </div>
);
export default Component;Coming from v2? Check the migration guide
Documentation
How to contribute?
- Fork this repo
 - Clone your fork
 - Code 🤓
 Test your changes
For this, I like to use yalc, as it allows to emulate the process of using npm/yarn.
- Install yalc
 - Build project with 
yarn buildornpm run build - Publish the package with yalc: 
yalc publish - Add the package to your test project 
yalc add react-google-places-automocomplete - If needed, to update the package on your test project: 
yalc update react-google-places-autocomplete 
- Submit a PR!
 
3.3.4
3 years ago