using material ui autocomplete code example

Example 1: how to get value from autocomplete material ui

 console.log(value)} // prints the selected value
    .....
    renderInput={params => (
        
    )}
/>

Example 2: how to set dynamic autocomplete with material ui

import React, { useState } from 'react';
using useState:

   const [val,setVal]=useState({})
changin value on click of button

  const handleClick = () => {
    setVal(top100Films[0]);//you pass any value from the array of top100Films
   // set value in TextField from dropdown list
 };
and pass this value to component in render

  option.title}
    style={{ width: 300 }}
    renderInput={params => (
      
    )}
  />

Tags:

Misc Example