mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
17 lines
435 B
JavaScript
17 lines
435 B
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import Docs from '../components/docs.jsx';
|
|
|
|
function setupDocumentationPage(props) {
|
|
ReactDOM.render(
|
|
<Docs
|
|
site={props.Site}
|
|
/>,
|
|
document.getElementById('docs')
|
|
);
|
|
}
|
|
|
|
global.window.mm_user = global.window.mm_user || {};
|
|
global.window.setup_documentation_page = setupDocumentationPage;
|