- Add fresh app structure (auth, tenant, mail, insight, docs, panel) - Include CMS content, API routes, scripts, and config - Migrate UI components, themes, and extensions to fresh runtime
6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
export function AppShellBypass({ children }: { children: ReactNode }) {
|
|
return <>{children}</>
|
|
}
|