UNPKG

hta

Version:

The tiny framework for building Hyper Text Application with ease

12 lines (10 loc) 216 B
import { createStore } from "./createStore"; export default function storeExtras(options) { return { store: { create(state) { return createStore(state, options.selectors); }, }, }; }