blob: f78e0f37afad334aa12ae86fbd64659821b832a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
var Login = require('../components/login.jsx');
function setupLoginPage(props) {
React.render(
<Login
teamDisplayName={props.TeamDisplayName}
teamName={props.TeamName}
/>,
document.getElementById('login')
);
}
global.window.setup_login_page = setupLoginPage;
|