mui-places-autocomplete
Version:
Material-UI React component that provides suggestions/autocompletes places using the Google Places API
17 lines (16 loc) • 777 B
HTML
<html>
<head>
<!-- Embed the Roboto font as it is the text used by Material Design/Material-UI -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<!-- Embed the Icon font as it is used by the <Icon> components of Material Design/Material-UI -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Replace YOUR_API_KEY with your Google API key for your project -->
<!-- Note that the Google Places API Web Service also needs to be enabled for your project -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places"></script>
</head>
<body>
<div id="root">
</div>
</body>
</html>