17 строки
501 B
JavaScript
17 строки
501 B
JavaScript
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var EmailVerify = require('../components/email_verify.jsx');
|
|
|
|
global.window.setupVerifyPage = function setupVerifyPage(props) {
|
|
React.render(
|
|
<EmailVerify
|
|
isVerified={props.IsVerified}
|
|
teamURL={props.TeamURL}
|
|
userEmail={props.UserEmail}
|
|
resendSuccess={props.ResendSuccess}
|
|
/>,
|
|
document.getElementById('verify')
|
|
);
|
|
};
|