madiator.com/ui/app.js
2021-08-16 12:11:25 +02:00

21 lines
335 B
JavaScript

import { store } from 'store';
const env = process.env.NODE_ENV || 'production';
const logs = [];
const app = {
env,
store,
logs,
log(message) {
logs.push(message);
},
};
global.app = app;
// Lbryinc needs access to the redux store for dispatching auth-releated actions
global.store = app.store;
export default app;