react-suggest
Version:
Pure react-based autosuggest with ajax suggestion list population
26 lines (24 loc) • 883 B
HTML
<head>
<title>React Autosuggest</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:300,100,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="container">
<h1>React Autosuggest</h1>
<!-- <h2 class="subheader">
Google Places Suggest for <a href="http://facebook.github.io/react/" title="React.js">React.js</a>,<br>supporting default places.
</h2> -->
<div id="app"></div>
<div class="hint">
Check the console when selecting a suggest!
</div>
<div class="footer">
<a href="https://github.com/harrybabu/react-autosuggest/">View project on GitHub</a>. Made by <a href="http://h18n.com" title="Haribau">Haribabu</a>
</div>
</div>
<script src="common.js"></script>
<script src="bundle.js"></script>
<script src="app.js"></script>
</body>