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