Skip to content

Instantly share code, notes, and snippets.

@svsh227
Created April 24, 2020 20:47
Show Gist options
  • Save svsh227/8147e19bcc4dd220d0d495cd9227ccd1 to your computer and use it in GitHub Desktop.
Save svsh227/8147e19bcc4dd220d0d495cd9227ccd1 to your computer and use it in GitHub Desktop.
Use the component in the app: in the App.js file, we will import our component and use it. See the below code:
import React from 'react';
import './App.css';
import TypeAheadDropDown from './TypeAheadDropDown';
import cities from './indianCities.js'
function App() {
return (
<div className="App">
<TypeAheadDropDown iteams={cities} />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment