Skip to content

Instantly share code, notes, and snippets.

View sdobber's full-sized avatar

Sabrina Dobberschütz sdobber

View GitHub Profile
@sdobber
sdobber / base_service.js
Created December 11, 2022 11:28
JSStore Setup
// from https://github.com/ujjwalguptaofficial/jsstore-examples/tree/master/react
import {
idbCon
} from "./idb_service";
export class BaseService {
get connection() {
return idbCon;
}