import { ReactNode } from 'react';

export default function ShowIf({
    children,
    condition,
}: {
    children: ReactNode;
    condition: boolean | null | undefined;
}) {
    if (condition) {
        return children;
    }
    return null;
}
