test: add CI/CD workflow
This commit is contained in:
parent
66d44c0774
commit
ce97671da3
28 changed files with 11684 additions and 1199 deletions
15
ui/components/BusinessList.tsx
Normal file
15
ui/components/BusinessList.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
const BusinessList = ({ businesses }: { businesses: BusinessData[] }) => {
|
||||
console.log('Rendering BusinessList with:', businesses);
|
||||
|
||||
if (!businesses.length) {
|
||||
return <div>No businesses found</div>;
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
||||
{businesses.map(business => (
|
||||
<BusinessCard key={business.id} business={business} />
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue