import type { LayoutNode } from 'officerdev'; export const defaultLayout: LayoutNode = { type: 'group', id: 'music-root', direction: 'horizontal', children: [ { node: { type: 'panel', id: 'music-browser', appType: 'music-browser' }, size: 26 }, { node: { type: 'panel', id: 'music-detail', appType: 'music-detail' }, size: 74 }, ], };