mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-17 13:46:47 +02:00
45 lines
898 B
TypeScript
45 lines
898 B
TypeScript
const loadingData = [
|
|
{
|
|
id: 'loading1',
|
|
name: 'loading1',
|
|
memberCount: 1,
|
|
health: 95,
|
|
featureCount: 4,
|
|
createdAt: '',
|
|
description: '',
|
|
mode: 'open' as const,
|
|
},
|
|
{
|
|
id: 'loading2',
|
|
name: 'loading2',
|
|
memberCount: 1,
|
|
health: 95,
|
|
featureCount: 4,
|
|
createdAt: '',
|
|
description: '',
|
|
mode: 'open' as const,
|
|
},
|
|
{
|
|
id: 'loading3',
|
|
name: 'loading3',
|
|
memberCount: 1,
|
|
health: 95,
|
|
featureCount: 4,
|
|
createdAt: '',
|
|
description: '',
|
|
mode: 'open' as const,
|
|
},
|
|
{
|
|
id: 'loading4',
|
|
name: 'loading4',
|
|
memberCount: 1,
|
|
health: 95,
|
|
featureCount: 4,
|
|
createdAt: '',
|
|
description: '',
|
|
mode: 'open' as const,
|
|
},
|
|
];
|
|
|
|
export default loadingData;
|