mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
21 lines
645 B
JavaScript
21 lines
645 B
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import SignupUserComplete from '../components/signup_user_complete.jsx';
|
|
|
|
function setupSignupUserCompletePage(props) {
|
|
ReactDOM.render(
|
|
<SignupUserComplete
|
|
teamId={props.TeamId}
|
|
teamName={props.TeamName}
|
|
teamDisplayName={props.TeamDisplayName}
|
|
email={props.Email}
|
|
hash={props.Hash}
|
|
data={props.Data}
|
|
/>,
|
|
document.getElementById('signup-user-complete')
|
|
);
|
|
}
|
|
|
|
global.window.setup_signup_user_complete_page = setupSignupUserCompletePage;
|