Create a React component (say SearchBar) which creates a searchbar UI that searches on a provided dataset and displays the matches as suggestions.
The component's usage should look as follows:
<SearchBar
  data={[{..}, {..}]}
 fields={["email", "company"]}