Split components into object-metadata and object-record (#2425)

* Split components into object-metadata and object-record

* Fix seed
This commit is contained in:
Charles Bochet
2023-11-10 15:54:32 +01:00
committed by GitHub
parent 04c618284f
commit 54d7acd518
93 changed files with 209 additions and 266 deletions

View File

@ -0,0 +1,6 @@
import { atomFamily } from 'recoil';
export const cursorFamilyState = atomFamily<string, string | undefined>({
key: 'cursorFamilyState',
default: '',
});

View File

@ -0,0 +1,6 @@
import { atomFamily } from 'recoil';
export const hasNextPageFamilyState = atomFamily<boolean, string | undefined>({
key: 'hasNextPageFamilyState',
default: false,
});

View File

@ -0,0 +1,9 @@
import { atomFamily } from 'recoil';
export const isFetchingMoreObjectsFamilyState = atomFamily<
boolean,
string | undefined
>({
key: 'isFetchingMoreObjectsFamilyState',
default: false,
});