UNPKG

react-select-plus

Version:

A fork of react-select with support for option groups

57 lines (56 loc) 2.95 kB
<!doctype html> <head> <meta charset="utf-8"> <title>React-Select-Plus Example</title> <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width"> <meta name="keywords" content="react,reactjs,react component,component,select,form,autocomplete,control,ui,javascript"> <meta name="description" content="A flexible and beautiful Select Input control for ReactJS with multiselect, autocomplete and ajax support."> <meta property="og:locale" content="en-us"> <meta property="og:title" content="React-Select"> <meta property="og:description" content="A flexible and beautiful Select Input control for ReactJS with multiselect, autocomplete and ajax support."> <meta property="og:url" content="https://github.hubspot.com/react-select-plus/"> <meta property="og:site_name" content="React-Select-Plus"> <meta property="og:type" content="article"> <link rel="stylesheet" href="example.css"> <link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="stylesheet" href="https://unpkg.com/react-virtualized/styles.css"> <link rel="stylesheet" href="https://unpkg.com/react-virtualized-select/styles.css"> </head> <body> <header class="page-header"> <div class="container"> <h1>React Select Plus</h1> <p>A flexible and beautiful Select Input control for <a href="http://facebook.github.io/react/" target="_blank">ReactJS</a> with multiselect, autocomplete and ajax support.</p> </div> </header> <div class="page-subheader"> <div class="container"> <a href="http://github.com/HubSpot/react-select-plus" class="page-subheader__link" target="_blank">Code and Docs on GitHub</a> <span class="page-subheader__button"> <a id="github-stars-button" class="github-button" data-style="" href="https://github.com/HubSpot/react-select-plus" data-count-href="/HubSpot/react-select-plus/stargazers" data-count-api="/repos/HubSpot/react-select-plus#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star HubSpot/react-select-plus on GitHub">Star</a> </span> </div> </div> <div class="page-body"> <div class="container"> <form> <!-- the React application is loaded in the #example element --> <div id="example"></div> </form> </div> </div> <footer class="page-footer"> <div class="container"> <span>Copyright &copy; HubSpot 2016. MIT Licensed.</span> </div> </footer> <script> document.getElementById('github-stars-button').dataset.style = window.innerWidth > 480 ? 'mega': null; </script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.1.1/es5-shim.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.1.1/es5-sham.js"></script> <script src="common.js"></script> <script src="bundle.js"></script> <script src="app.js"></script> <script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script> </body>