6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
export function AppShellBypass({ children }: { children: ReactNode }) {
|
|
return <>{children}</>
|
|
}
|