1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/component/project/ProjectList/loadingData.ts
Fredrik Strand Oseberg 83fe430a14
Feat/private project badge (#5373)
Adds an icon with tooltip for private projects in ProjectCard and
Project header:

<img width="528" alt="Skjermbilde 2023-11-21 kl 10 58 13"
src="https://github.com/Unleash/unleash/assets/16081982/28004c11-a20d-4740-98f4-127f41639896">
2023-11-21 11:49:50 +01:00

45 lines
846 B
TypeScript

const loadingData = [
{
id: 'loading1',
name: 'loading1',
memberCount: 1,
health: 95,
featureCount: 4,
createdAt: '',
description: '',
mode: '',
},
{
id: 'loading2',
name: 'loading2',
memberCount: 1,
health: 95,
featureCount: 4,
createdAt: '',
description: '',
mode: '',
},
{
id: 'loading3',
name: 'loading3',
memberCount: 1,
health: 95,
featureCount: 4,
createdAt: '',
description: '',
mode: '',
},
{
id: 'loading4',
name: 'loading4',
memberCount: 1,
health: 95,
featureCount: 4,
createdAt: '',
description: '',
mode: '',
},
];
export default loadingData;