7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
export const isAppWaitingForFreshObjectMetadataState = createState<boolean>({
|
|
key: 'isAppWaitingForFreshObjectMetadataState',
|
|
defaultValue: false,
|
|
});
|