blob: 8d0b1eae8885c7bc0b466b598a7be8bde0489da0 [file] [log] [blame]
pineafanc540da92021-09-03 20:33:36 +01001import { Component } from 'react'
pineafanaed30242021-09-04 09:33:40 +01002import Header from '../../Components/Header'
pineafanc540da92021-09-03 20:33:36 +01003
4class Success extends Component {
5 constructor(props) {
6 super(props)
7 }
8
pineafanc540da92021-09-03 20:33:36 +01009 render() {
10 return (
pineafanaed30242021-09-04 09:33:40 +010011 <Header
12 name="Verified"
13 subtext="You can now close this tab or window."
14 gradient={["65CC76", "60B258"]}
pineafana841c762021-11-14 21:21:04 +000015 wave="web/waves/header/rsm"
pineafanaed30242021-09-04 09:33:40 +010016 buttons={[]}
pineafaneebe3c62022-02-11 19:46:21 +000017 fullscreen={true}
PineaFana465f352023-02-05 16:45:01 +000018 season={this.props.season}
pineafanaed30242021-09-04 09:33:40 +010019 />
pineafanc540da92021-09-03 20:33:36 +010020 )
21 }
22
23}
24
25export default Success;