Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { h, render } from 'preact';
import { Provider } from 'preact-redux';
import { initSteno } from 'steno';
import 'common/styles/reset.styl';
import './game-master-styles.styl';
import GameMasterApp from './components/GameMasterApp';
import store from './store/store';
initSteno('ui-game-master');
render((
), document.body);
import { h, render } from 'preact';
import { Provider } from 'preact-redux';
import { initSteno } from 'steno';
import 'common/styles/reset.styl';
import './game-styles.styl';
import GameApp from './components/GameApp';
import store from './store/store';
initSteno('ui-game');
render((
), document.body);