import type { LayoutNode } from 'officerdev'; export const defaultLayout: LayoutNode = { type: 'group', id: 'ws-home-root', direction: 'horizontal', children: [ { node: { type: 'panel', id: 'ws-home-list', appType: 'dashboard-list' }, size: 50 }, { node: { type: 'panel', id: 'ws-home-right', appType: 'dashboard-preview' }, size: 50 }, ], };