UNPKG

razor-shared-library

Version:
8 lines (7 loc) 232 B
import { PropsWithChildren, ReactNode } from 'react'; interface Props { value: unknown; children: ReactNode; } export default function ConditionalRender({ value, children, }: PropsWithChildren<Props>): ReactNode; export {};