pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame] | 1 | import { Component } from 'react' |
| 2 | import Header from '../../../Components/Header' |
| 3 | |
| 4 | class Failed extends Component { |
| 5 | constructor(props) { |
| 6 | super(props) |
| 7 | } |
| 8 | |
| 9 | render() { |
| 10 | return ( |
| 11 | <Header |
| 12 | name="An error occurred" |
| 13 | subtext={<p>An unknown error has occurred.<br />Let the server owners know if you believe this is a mistake.</p>} |
| 14 | gradient={["F27878", "D96B6B"]} |
| 15 | wave="web/waves/header/rsm" |
| 16 | buttons={[]} |
pineafan | eebe3c6 | 2022-02-11 19:46:21 +0000 | [diff] [blame] | 17 | fullscreen={true} |
PineaFan | a465f35 | 2023-02-05 16:45:01 +0000 | [diff] [blame^] | 18 | season={this.props.season} |
pineafan | f97734b | 2021-11-23 21:11:00 +0000 | [diff] [blame] | 19 | /> |
| 20 | ) |
| 21 | } |
| 22 | |
| 23 | } |
| 24 | |
| 25 | export default Failed; |