commerce/app/tests/page.tsx
Timur Suleymanov 83ae628672 tests pages
2024-06-05 00:37:35 +05:00

15 lines
343 B
TypeScript

import commerceApi from '@commerce/api';
import Alphabet from 'components/tests/alphabet';
import TestsTable from 'components/tests/tests-table';
export default async function TestsPage() {
const products = await commerceApi.getProducts();
return (
<div>
<Alphabet />
<TestsTable products={products} />
</div>
);
}