ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
16 lines • 323 B
TypeScript
import { Store } from './types';
/**
* Store using memory
*
* @example
*
* import { memoryStore } from 'react-admin';
*
* const App = () => (
* <Admin store={memoryStore()}>
* ...
* </Admin>
* );
*/
export declare const memoryStore: (storage?: any) => Store;
//# sourceMappingURL=memoryStore.d.ts.map