* Fix views * Make view sorts and view filters functional * Complete Company table view fix * Fix model creation * Start fixing board * Complete work
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import { createScopedFamilyState } from '@/ui/utilities/recoil-scope/utils/createScopedFamilyState';
|
|
|
|
import { ViewSort } from '../types/ViewSort';
|
|
|
|
export const savedViewSortsScopedFamilyState = createScopedFamilyState<
|
|
ViewSort[],
|
|
string
|
|
>({
|
|
key: 'savedViewSortsScopedFamilyState',
|
|
defaultValue: [],
|
|
});
|