pineafan | c540da9 | 2021-09-03 20:33:36 +0100 | [diff] [blame^] | 1 | import { Component } from 'react' |
| 2 | import Styles from '../../styles/pages/rsmv.module.scss' |
| 3 | |
| 4 | class Success extends Component { |
| 5 | constructor(props) { |
| 6 | super(props) |
| 7 | } |
| 8 | |
| 9 | |
| 10 | |
| 11 | render() { |
| 12 | return ( |
| 13 | <> |
| 14 | <div className={Styles.container}> |
| 15 | <div className={Styles.ServerHeader}> |
| 16 | <h4> |
| 17 | Thank you for verifying.<br /> |
| 18 | You can now close this tab or window. |
| 19 | </h4> |
| 20 | </div> |
| 21 | </div> |
| 22 | <div style={{height:"38vh"}}></div> |
| 23 | </> |
| 24 | ) |
| 25 | } |
| 26 | |
| 27 | } |
| 28 | |
| 29 | export default Success; |