mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
83fe430a14
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">
45 lines
846 B
TypeScript
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;
|