MCPcopy Index your code
hub / github.com/buildermethods/design-os / hasShellComponents

Function hasShellComponents

src/lib/shell-loader.ts:88–98  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

86 * Check if shell components exist
87 */
88export function hasShellComponents(): boolean {
89 // Check if AppShell.tsx exists
90 const exists = '/src/shell/components/AppShell.tsx' in shellComponentModules
91 // Debug: log available shell components
92 console.log('[Shell] hasShellComponents check:', {
93 exists,
94 availableComponents: Object.keys(shellComponentModules),
95 lookingFor: '/src/shell/components/AppShell.tsx'
96 })
97 return exists
98}
99
100/**
101 * Load shell component dynamically

Callers 3

ScreenDesignFullscreenFunction · 0.90
loadShellInfoFunction · 0.85
hasShellFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected