mirror of
https://github.com/vercel/commerce.git
synced 2025-06-16 04:11:22 +00:00
15 lines
343 B
TypeScript
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>
|
|
);
|
|
}
|