FallBackOption type

A default option to be displayed in the ConditionalContents component if none of the other options match.

Signature:

export type FallBackOption = {
    fallback: () => React.ReactNode;
};