TDMS/web/src/components/layout/Error.tsx
Maksim Skobaro e686830f1d changes.
2025-06-23 14:45:53 +03:00

13 lines
362 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {observer} from "mobx-react";
import {Page} from "./Page";
@observer
export class Error extends Page {
get page() {
return <div>
<h1 className={'text-center mt-5'}>Произошла ошибка!</h1>
<h3 className={'mt-2 text-center'}>Обратитесь к администратору</h3>
</div>
}
}