mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-29 18:08:49 +00:00
5 lines
160 B
JavaScript
Executable file
5 lines
160 B
JavaScript
Executable file
const React = require('react');
|
|
const ReactDOM = require('react-dom');
|
|
const App = require('./App');
|
|
|
|
ReactDOM.render(<App />, document.getElementById('app'));
|