blob: 3b0b49bc8a0f727c19f7f3121571fcfd6eb0f761 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import './console-frame.scss';
import { createStore, applyMiddleware } from 'redux';
import promise from 'redux-promise';
import reducers from 'content/reducers';
import TopContentComponent from './components/top-content';
import FrameContentComponent from './components/frame-content';
const store = createStore(
reducers,
applyMiddleware(promise),
);
if (window.self === window.top) {
new TopContentComponent(window, store); // eslint-disable-line no-new
} else {
new FrameContentComponent(window, store); // eslint-disable-line no-new
}
|