@knowmax/genericlist-core
Version:
Knowmax Generic list with basic CRUD support without any user interface implementation.
9 lines (8 loc) • 462 B
TypeScript
import { FunctionComponent } from 'react';
import { GenericListSettings } from './GenericListSettings';
export declare const useGenericListSettings: () => GenericListSettings;
/** Wrap this around your application to be able to configure and use generic lists.
* Also includes GenericListCacheProvider, so no need to wrap that around your application. */
export declare const GenericListSettingsProvider: FunctionComponent<{
children?: React.ReactNode;
}>;