UNPKG

react-if-render

Version:

Conditional Rendering of React Components.

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