UNPKG

@scripty/react-store

Version:

This lightweight global react hook store is inspired by the extjs store architecture. Share your stores through your application with only a few lines of code!

14 lines (10 loc) 265 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createStore = void 0; var _Store = require("./Store"); var createStore = function createStore(store) { return new _Store.Store(store); }; exports.createStore = createStore;