mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-12 07:00:28 +00:00
10 lines
245 B
JavaScript
Executable file
10 lines
245 B
JavaScript
Executable file
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { Modal } from 'stremio-common';
|
|
import App from './app';
|
|
|
|
const container = document.getElementById('app');
|
|
|
|
Modal.container = container;
|
|
|
|
ReactDOM.render(<App />, container);
|