1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-17 13:46:47 +02:00
unleash.unleash/frontend/src/component/project/ProjectList/loadingData.ts
Tymoteusz Czech 6030900b40
refactor: replace IProjectCard with openapi type (#8043)
Makes type consistent between frontend and schema generated from backend.
2024-09-02 13:25:28 +00:00

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;