openreplay/frontend/app/components/shared/NotFoundPage.tsx
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

24 lines
533 B
TypeScript

import React from 'react';
function NotFoundPage() {
return (
<div
className="inset-0 flex items-center justify-center absolute"
style={{
height: 'calc(100vh - 50px)',
// zIndex: '999',
}}
>
<div className="flex flex-col items-center">
<div className="text-2xl -mt-8">
Session not found.
</div>
<div className="text-sm">
Please check your data retention policy.
</div>
</div>
</div>
);
}
export default NotFoundPage;