mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 13:17:51 +00:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
export function LoginMessage() {
|
|
return (
|
|
<div>
|
|
<h2>Error</h2>
|
|
<span>Your session has expired. Please log in again.</span>
|
|
</div>
|
|
);
|
|
}
|