UNPKG

react-if-render

Version:

Conditional Rendering of React Components.

8 lines (7 loc) 220 B
import { ReactNode } from "react"; type Props = { condition: boolean; children?: ReactNode; }; declare function When({ condition, children }: Props): import("react/jsx-runtime").JSX.Element; export default When;