@brevio/company-search

Company search component for all Brevio services

Usage no npm install needed!

<script type="module">
  import brevioCompanySearch from 'https://cdn.skypack.dev/@brevio/company-search';
</script>

README

Company Search

In our services, we often want to search for companies that are assigned to audit_requests and sign_requests. Since this functionality is shared across services, this package was created to ensure the data flow and functionality is equal across both services, and reduce maintenance cost whenever the flow/functionality is updated.

This package is a react component with some

Setup

To use the package, you need to install it: npm i @brevio/company-search, and use it as any other React component.

<App>
  <CompanySearch
    select={(company) => api.update({ company })}
    countrySelector
  />
</App>