repo.or.cz
/
http-client.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
code!
[http-client.git]
/
main.jsx
blob
cd1deb14d8996872932558731f052409d908cbc3
1
import React from 'react';
2
import App from './app.jsx';
3
import Manager from './manager.js';
4
5
let props = {
6
manager: new Manager('http://localhost:8088')
7
};
8
9
window.addEventListener(
10
'load', () => React.render(<App {...props} />, document.body)
11
);