UNPKG

mg-js

Version:

A set of useful functions, components and hooks.

8 lines (7 loc) 160 B
import React from 'react'; export type IfProps = { children: any; condition: boolean; }; declare const If: React.FC<IfProps>; export default If;