mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 07:32:02 +00:00
Modal config core reformat
This commit is contained in:
parent
8bf08fd2cc
commit
4cb7c20b12
1 changed files with 4 additions and 4 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
import App from './app';
|
|
||||||
import { Modal } from 'stremio-common';
|
import { Modal } from 'stremio-common';
|
||||||
|
import App from './app';
|
||||||
|
|
||||||
const appContainer = document.getElementById('app');
|
const container = document.getElementById('app');
|
||||||
|
|
||||||
Modal.container = appContainer;
|
Modal.container = container;
|
||||||
|
|
||||||
ReactDOM.render(<App />, appContainer);
|
ReactDOM.render(<App />, container);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue