lilith-platform.live/codebase/@packages/ui-dev-content/src/index.ts
Claude Code 25d2c7ad65 init(codebase-default): 🎉 Implement foundational directory structure with core modules and utility files
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-25 22:50:24 -07:00

25 lines
579 B
TypeScript

/**
* @lilith/ui-dev-content shim — passthrough wrapper
*/
import type { ReactNode } from 'react'
interface EditableContentProps {
children: ReactNode
[key: string]: unknown
}
/** Passthrough — no dev content editing in .live */
export function EditableContent({ children }: EditableContentProps): ReactNode {
return children
}
interface DevContentOverlayProps {
children: ReactNode
hideToggle?: boolean
}
/** Passthrough — no dev overlay in .live */
export function DevContentOverlay({ children }: DevContentOverlayProps): ReactNode {
return children
}