import { FC, ReactElement } from "react";

export interface IfProps {
  data: any;
}

export const If: FC<IfProps> = props => {
  return props.data ? (props.children as ReactElement) : null;
};
