TelegramPWA/src/components/main/AppInactive.tsx
2021-05-06 19:31:26 +03:00

32 lines
841 B
TypeScript

import React, { FC } from '../../lib/teact/teact';
import Button from '../ui/Button';
import appInactivePath from '../../assets/app-inactive.png';
import './AppInactive.scss';
const AppInactive: FC = () => {
const handleReload = () => {
window.location.reload();
};
return (
<div id="AppInactive">
<div className="content">
<img src={appInactivePath} alt="" />
<h3 className="title">Such error, many tabs</h3>
<div className="description">
Telegram supports only one active tab with the app.
<br />
Please reload this page to continue using this tab or close it.
</div>
<div className="actions">
<Button isText ripple onClick={handleReload}>Reload app</Button>
</div>
</div>
</div>
);
};
export default AppInactive;