@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
10 lines (9 loc) • 294 B
TypeScript
import { appReducer } from './app/store';
import tempConfig from './config';
import { PosAPI } from './services';
export * from './components';
export * from './hooks';
export * from './slices';
export * from './utils';
export * from './middlewares';
export { appReducer, tempConfig, PosAPI };