blob: 3cf1e4f6fb57fd6c1c75ca69e9d21ce72a573ffb [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}
pineafanaed30242021-09-04 09:33:40 +010018 />
pineafanc540da92021-09-03 20:33:36 +010019 )
20 }
21
22}
23
24export default Success;