mirror of
https://github.com/movie-web/extension.git
synced 2025-09-13 12:43:24 +00:00
16 lines
337 B
TypeScript
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>
|
|
);
|
|
}
|