Skip to content
This repository was archived by the owner on Jan 29, 2024. It is now read-only.

foadabdollahi/SuggestInput

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SuggestInput

A simple input for suggest some word with free allow add new word

const [result, setResult] = useState(['c', 'c#', 'java']);
  
 
<SuggestInput
      suggestions={['c', 'c++', 'c#', 'javascript', 'java', 'php']}
      value={result}
      placeholder={'Please select your programming language'}
      onChange={function (result: string[]): void {
        setResult(result);
        console.log(result);
      }}
  />

alt text alt text

About

A simple input for suggest some word with free allow add new word

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published