mirror of https://github.com/vector-im/riot-web
13 lines
419 B
JavaScript
13 lines
419 B
JavaScript
var React = require("react");
|
|
// In normal usage of the module:
|
|
//var MatrixReactSdk = require("matrix-react-sdk");
|
|
// Or to import the source directly from the file system:
|
|
// (This is useful for debugging the SDK as it seems source
|
|
// maps cannot pass through two stages).
|
|
var MatrixReactSdk = require("../../src/index");
|
|
|
|
React.render(
|
|
<MatrixReactSdk.MatrixChat />,
|
|
document.getElementById('matrixchat')
|
|
);
|