mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
24 lines
608 B
TypeScript
24 lines
608 B
TypeScript
|
import { LibraryBooks } from '@material-ui/icons';
|
||
|
|
||
|
export const defaultValue = {
|
||
|
name: 'Unleash',
|
||
|
version: '3.x',
|
||
|
environment: '',
|
||
|
slogan: 'The enterprise ready feature toggle service.',
|
||
|
flags: {},
|
||
|
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',
|
||
|
},
|
||
|
],
|
||
|
};
|