summaryrefslogtreecommitdiffstats
path: root/web/react/pages/signup_team_complete.jsx
blob: 346f2ab5abafb59569bd0ac9886b7075296d0160 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var SignupTeamComplete =require('../components/signup_team_complete.jsx');

global.window.setup_signup_team_complete_page = function(email, name, data, hash) {
    React.render(
        <SignupTeamComplete name={name} email={email} hash={hash} data={data}/>,
        document.getElementById('signup-team-complete')
    );
};