import { refreshableSettings, createPersistedStore } from '@@/datatables/types'; import { TableSettings } from './types'; export function createStore(storageKey: string) { return createPersistedStore( storageKey, 'SubmitTime', (set) => ({ ...refreshableSettings(set), }) ); }