Skip to content

Commit

Permalink
Bug overround.
Browse files Browse the repository at this point in the history
  • Loading branch information
vjvirtan committed Oct 30, 2024
1 parent e9e712b commit 769bf6b
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions app/components/form/CompanyForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,7 @@ const CompanyForm = () => {
};
return (
<>
<div>{translatePageText("findCompany")} </div>
<div className='border-spacing-2 border-green-300'>
<input
className=''
id='businessId'
onChange={(e) => findCompany(e.target.value)}
type='text'
></input>
</div>
<div className='border-spacing-2 border-green-300'></div>
<br />
<div
className='text-sm'
Expand All @@ -38,9 +30,24 @@ const CompanyForm = () => {
}}
>
<div>{translatePageText("exampleCompanyIDs")}</div>
<div id='7777777-1'>"7777777-1"</div>
<div id='8888888-1'>"8888888-1"</div>
<div id='9999999-1'>"9999999-1"</div>
<button
className='bg-base-mid text-white border-2 rounded-md border-base-dark shadow-sm shadow-gray-400 m-2 p-4 hover:border-white hover:bg-blue-500'
id='7777777-1'
>
"7777777-1"
</button>
<button
className='bg-base-mid text-white border-2 rounded-md border-base-dark shadow-sm shadow-gray-400 m-2 p-4 hover:border-white hover:bg-blue-500'
id='8888888-1'
>
"8888888-1"
</button>
<button
className='bg-base-mid text-white border-2 rounded-md border-base-dark shadow-sm shadow-gray-400 m-2 p-4 hover:border-white hover:bg-blue-500'
id='9999999-1'
>
"9999999-1"
</button>
</div>
</>
);
Expand Down

0 comments on commit 769bf6b

Please sign in to comment.