frontend/smart-hut/src/views/ConfirmRegistration.js

10 lines
368 B
JavaScript
Raw Normal View History

2020-05-12 13:18:33 +00:00
import React, { Component } from 'react';
import Confirm from './Confirm';
2020-03-23 20:24:17 +00:00
2020-05-12 13:18:33 +00:00
const msg = "An E-mail has been sent to your address, confirm your registration by following the enclosed link. If you don't find the E-mail please check also the spam folder.";
2020-04-17 09:29:40 +00:00
export default class ConfirmRegistration extends Component {
2020-03-23 20:24:17 +00:00
render() {
2020-05-10 19:43:09 +00:00
return <Confirm msg={msg} />;
2020-03-23 20:24:17 +00:00
}
}