Blame view
imports/client/views/verify/module/VerifyLayout.js
1.01 KB
878ca8a15
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import _ from 'lodash'; import { Meteor } from 'meteor/meteor'; import React, { Component } from 'react'; import { Link } from 'react-router'; import { If, Case } from '/imports/client/components/Logic'; import { Avatar } from '/imports/client/components/Avatar'; import { logout } from '/imports/client/app/utils/loginMethods'; import { EmailPane } from '/imports/client/views/verify/EmailPane'; import ReactSVG from 'react-svg' export class VerifyLayout extends Component { render() { const user = this.props.data.user; return ( <div className = "wizardLayout-box"> |
878ca8a15
|
22 23 24 25 26 27 |
<div className = "wizardLayout-wrap"> <div className = "wizardLayout-content"> <EmailPane user = {user} /> |
316564385
|
28 |
|
878ca8a15
|
29 30 31 32 33 |
</div> </div> </div> ); }; |
878ca8a15
|
34 |
|
316564385
|
35 |
}; |