blob: a1ed9459b4e48916435b52421440e8ebae450fda [file] [log] [blame]
pineafanc540da92021-09-03 20:33:36 +01001import { Component } from 'react'
pineafanaed30242021-09-04 09:33:40 +01002import Styles from '../../styles/rsmv/rsmv.module.css'
3import Header from '../../Components/Header'
pineafanc540da92021-09-03 20:33:36 +01004
5class Success extends Component {
6 constructor(props) {
7 super(props)
8 }
9
pineafanc540da92021-09-03 20:33:36 +010010 render() {
11 return (
pineafanaed30242021-09-04 09:33:40 +010012 <Header
13 name="Verified"
14 subtext="You can now close this tab or window."
15 gradient={["65CC76", "60B258"]}
16 wave="RM"
17 buttons={[]}
18 hideArrow={true}
19 />
pineafanc540da92021-09-03 20:33:36 +010020 )
21 }
22
23}
24
25export default Success;