-
Tom French authored
* style: enforce ordering of imports * style: sort imports in loot-core * style: sort imports in desktop-client * style: sort imports in loot-design * style: manual fixes
Tom French authored* style: enforce ordering of imports * style: sort imports in loot-core * style: sort imports in desktop-client * style: sort imports in loot-design * style: manual fixes
main-app.js 232 B
import { createApp } from './app';
const connection = require('../platform/server/connection');
// Main app
const app = createApp();
app.events.on('sync', info => {
connection.send('sync-event', info);
});
export default app;