1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/hooks/api/getters/useUiConfig/defaultValue.ts

24 lines
638 B
TypeScript
Raw Normal View History

import { LibraryBooks } from '@material-ui/icons';
export const defaultValue = {
name: 'Unleash',
version: '3.x',
environment: '',
slogan: 'The enterprise ready feature toggle service.',
flags: { P: false, C: false, E: false },
links: [
{
value: 'Documentation',
icon: LibraryBooks,
href: 'https://docs.getunleash.io/docs?source=oss',
title: 'User documentation',
},
{
value: 'GitHub',
icon: 'c_github',
href: 'https://github.com/Unleash',
title: 'Source code on GitHub',
},
],
};