mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 13:11:23 +00:00
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
export default async function TestPage() {
|
|
return (
|
|
<div>
|
|
<h1>Test Detail for ID:</h1>
|
|
{/* Render test details based on the ID */}
|
|
|
|
<button>Add to cart</button>
|
|
</div>
|
|
);
|
|
}
|