import * as React from 'react';

/**
 * A placeholder stub whose rendering logic is controlled by the parent <If />.
 */
export const Else: React.FunctionComponent = ({ children }) => (
  <>{children}</>
);
