accounts/dashboard-fresh/lib/appShellBypass.tsx
Haitao Pan 9c877ceb3c feat(dashboard-fresh): migrate and integrate dashboard source
- 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
2025-11-04 18:06:21 +08:00

6 lines
139 B
TypeScript

import type { ReactNode } from 'react'
export function AppShellBypass({ children }: { children: ReactNode }) {
return <>{children}</>
}