mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 20:57:51 +00:00
17 lines
505 B
TypeScript
17 lines
505 B
TypeScript
const OrdersHeader = () => {
|
|
return (
|
|
<div className="mx-auto max-w-7xl sm:px-2 lg:px-8">
|
|
<div className="mx-auto max-w-2xl px-4 lg:max-w-4xl lg:px-0">
|
|
<h1 className="text-2xl font-bold tracking-tight text-gray-900 sm:text-3xl">
|
|
Order history
|
|
</h1>
|
|
<p className="mt-2 text-sm text-gray-500">
|
|
Check the status of recent orders, manage returns, and discover similar products.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default OrdersHeader;
|