import React from "react";

function Cond({
  children,
  condition,
  fallback = null
}: {
  children: React.ReactNode;
  condition: boolean;
  fallback?: React.ReactNode;
}) {
  return condition ? children : fallback;
}

export default Cond;
