adding accouns screens

This commit is contained in:
Donald Strawsburg
2024-11-22 11:14:00 -05:00
parent fb034831fa
commit 2d69cf76d7
2 changed files with 39 additions and 0 deletions

12
src/app/Accounts/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
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>
);
}