mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
17 lines
No EOL
246 B
JavaScript
17 lines
No EOL
246 B
JavaScript
|
|
|
|
//main.js
|
|
var init = function() {
|
|
var canvas = document.getElementById('canvas');
|
|
|
|
ReactDOM.render(
|
|
<SplashScreen message="Connecting"/>,
|
|
canvas
|
|
);
|
|
|
|
lbry.connect(function() {
|
|
ReactDOM.render(<App/>, canvas);
|
|
})
|
|
};
|
|
|
|
init(); |