mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
17 lines
505 B
JavaScript
17 lines
505 B
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var EmailVerify = require('../components/email_verify.jsx');
|
|
|
|
global.window.setupVerifyPage = function setupVerifyPage(props) {
|
|
ReactDOM.render(
|
|
<EmailVerify
|
|
isVerified={props.IsVerified}
|
|
teamURL={props.TeamURL}
|
|
userEmail={props.UserEmail}
|
|
resendSuccess={props.ResendSuccess}
|
|
/>,
|
|
document.getElementById('verify')
|
|
);
|
|
};
|