pineafan | fd93e6e | 2022-05-06 20:30:09 +0100 | [diff] [blame] | 1 | import { Component } from 'react' |
2 | import Header from '../../../Components/Header' | ||||
3 | |||||
4 | class Success extends Component { | ||||
5 | constructor(props) { | ||||
6 | super(props) | ||||
7 | } | ||||
8 | |||||
9 | render() { | ||||
10 | return ( | ||||
11 | <Header | ||||
12 | name="Verified" | ||||
13 | subtext="You can now close this tab or window." | ||||
14 | gradient={["65CC76", "60B258"]} | ||||
15 | wave="web/waves/header/rsm" | ||||
16 | buttons={[]} | ||||
17 | fullscreen={true} | ||||
18 | /> | ||||
19 | ) | ||||
20 | } | ||||
21 | |||||
22 | } | ||||
23 | |||||
24 | export default Success; |