Include the module in your project:
`jsx
import { Typeahead } from 'react-bootstrap-typeahead'; // ES2015
var Typeahead = require('react-bootstrap-typeahead').Typeahead; // CommonJS
`
#### UMD Build
Development and production builds are included in the NPM package. Alternatively, you can get them from CDNJS or unpkg.
While the component relies primarily on Bootstrap, some additional styling is needed. You should include the provided CSS file in your project:
`js
// Import as a module in your JS
import 'react-bootstrap-typeahead/css/Typeahead.css';
` or
`html
`
Examples
Try the live examples, which also include code samples. If you'd like to modify the examples, clone the repository and run npm install and npm start` to build the example file. You can then open the HTML file locally in your browser.