const config = { title: 'Layout 1 - Dashboard', defaults: { mode: 'container', containerWidth: 1590, navbar: { display: true, folded: true, position: 'left', }, }, form: { mode: { title: 'Mode', type: 'radio', options: [ { name: 'Boxed', value: 'boxed', }, { name: 'Full Width', value: 'fullwidth', }, { name: 'Container', value: 'container', }, ], }, containerWidth: { title: 'Container Width (px)', type: 'number', }, navbar: { type: 'group', title: 'Navbar', children: { display: { title: 'Display', type: 'switch', }, position: { title: 'Position', type: 'radio', options: [ { name: 'Left', value: 'left', }, { name: 'Right', value: 'right', }, ], }, }, }, }, }; export default config;