feat: implement tabs syncing to selfhost-web (#63)

This commit is contained in:
Akash K
2023-04-01 18:46:54 +05:30
committed by GitHub
parent 8586ced3cc
commit 97c3e6089d
5 changed files with 91 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import { def as environmentsDef } from "./platform/environments/environments.pla
import { def as collectionsDef } from "./platform/collections/collections.platform"
import { def as settingsDef } from "./platform/settings/settings.platform"
import { def as historyDef } from "./platform/history/history.platform"
import { def as tabStateDef } from "./platform/tabState/tabState.platform"
createHoppApp("#app", {
auth: authDef,
@@ -12,5 +13,6 @@ createHoppApp("#app", {
collections: collectionsDef,
settings: settingsDef,
history: historyDef,
tabState: tabStateDef,
},
})