openreplay/frontend/app/components/shared/NotFoundPage.tsx
2023-07-24 18:46:32 +02:00

24 lines
No EOL
531 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;