import type { LayoutNode } from 'officerdev'; export const defaultLayout: LayoutNode = { type: 'group', id: 'calendar-root', direction: 'horizontal', children: [ { node: { type: 'panel', id: 'calendar-nav', appType: 'calendar-nav' }, size: 22 }, { node: { type: 'panel', id: 'calendar-view', appType: 'calendar-view' }, size: 78 }, ], };