Data Skeleton Loading on Indexes (#5828)

### Description
Data Skeleton Loading on Indexes

### Refs
#4459

### Demo


https://github.com/twentyhq/twenty/assets/140154534/d9c9b0fa-2d8c-4b0d-8d48-cae09530622a


Fixes #4459

---------

Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com>
Co-authored-by: v1b3m <vibenjamin6@gmail.com>
Co-authored-by: Matheus <matheus_benini@hotmail.com>
Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
gitstart-twenty
2024-06-19 09:25:20 -04:00
committed by GitHub
parent ff21396bc6
commit 701059007b
11 changed files with 240 additions and 8 deletions

View File

@ -0,0 +1,9 @@
import { createFamilyState } from '@/ui/utilities/state/utils/createFamilyState';
export const isRecordIndexBoardColumnLoadingFamilyState = createFamilyState<
boolean,
string | undefined
>({
key: 'isRecordIndexBoardColumnLoadingFamilyState',
defaultValue: false,
});