1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-10 02:50:11 +02:00
copilot/packages/cp-frontend/src/state/state.js

29 lines
459 B
JavaScript
Raw Normal View History

const state = {
ui: {
sections: {
deploymentGroups: [
{
pathname: 'services',
name: 'Services'
},
{
pathname: 'instances',
name: 'Instances'
},
{
pathname: 'manifest',
name: 'Manifest'
}
],
services: [
{
pathname: 'instances',
name: 'Instances'
}
]
}
}
};
export default state;