mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-19 01:22:11 +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'));
|