mirror of
https://github.com/vercel/commerce.git
synced 2025-06-19 13:41:22 +00:00
11 lines
176 B
TypeScript
11 lines
176 B
TypeScript
const TestPage = () => {
|
|
return (
|
|
<div>
|
|
<h1>Test Detail for ID:</h1>
|
|
{/* Render test details based on the ID */}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TestPage;
|