accounts/dashboard/lib/appShellBypass.tsx

6 lines
139 B
TypeScript

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