Add CorpusFollowerList and functions

This commit is contained in:
Patrick Jentsch
2023-02-20 10:40:33 +01:00
parent 5837e05024
commit 2dc41fd387
8 changed files with 234 additions and 38 deletions

10
app/static/js_new/App.js Normal file
View File

@@ -0,0 +1,10 @@
import DataStore from './DataStore';
import EventBroker from './EventBroker';
const dataStore = new DataStore();
const eventBroker = new EventBroker();
const socket = io({transports: ['websocket'], upgrade: false});
export {eventBroker, socket};