Files
extension/src/components/DisabledScreen.tsx
2024-02-07 19:07:01 +01:00

16 lines
337 B
TypeScript

import './DisabledScreen.css';
import { Icon } from './Icon';
export function DisabledScreen() {
return (
<div className="disabled">
<div className="icon">
<Icon name="warningCircle" />
</div>
<p>
The <strong>movie-web extension</strong> can not be used on this page
</p>
</div>
);
}