accounts stuff

This commit is contained in:
2024-11-22 14:56:37 -05:00
parent 4f461cfc40
commit c0ae295734
5 changed files with 24 additions and 16 deletions

View File

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