This commit is contained in:
2024-11-21 17:11:28 -05:00
parent e775d88460
commit 780f3ca8be
2 changed files with 4 additions and 5 deletions

View File

@@ -1,12 +0,0 @@
import { getData } from "../../actions/brandActions";
import Brands from "../../components/Brand/brands";
export default async function BrandsPage() {
const data = await getData();
return (
<div className="bg-gray-100 min-h-screen flex flex-col">
<Brands brands={data} />
</div>
);
}