2019-04-11 21:52:37 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2021-10-22 22:23:32 +00:00
|
|
|
|
2021-09-12 06:56:29 +00:00
|
|
|
interface IProps {
|
2021-09-13 16:23:37 +00:00
|
|
|
title: React.ReactNode;
|
|
|
|
message: React.ReactNode;
|
2021-09-12 06:56:29 +00:00
|
|
|
}
|
2019-04-11 21:52:37 +00:00
|
|
|
|
2021-09-12 06:56:29 +00:00
|
|
|
export default class GenericErrorPage extends React.PureComponent<IProps> {
|
2019-04-11 21:52:37 +00:00
|
|
|
render() {
|
|
|
|
return <div className='mx_GenericErrorPage'>
|
|
|
|
<div className='mx_GenericErrorPage_box'>
|
2021-07-19 21:43:11 +00:00
|
|
|
<h1>{ this.props.title }</h1>
|
|
|
|
<p>{ this.props.message }</p>
|
2019-04-11 21:52:37 +00:00
|
|
|
</div>
|
|
|
|
</div>;
|
|
|
|
}
|
2019-04-15 02:46:32 +00:00
|
|
|
}
|