{/** NOTE(amine): a fix for a backdrop-filter bug where the filter doesn't take any effects.
* It happens when we have two elements using backdrop-filter with a parent-child relationship */}
);
}
const Actions = ({ isSignedOut, isSearching, onAction, onUpload, onDismissSearch }) => {
const authActions = React.useMemo(
() => (
<>
Sign in
Sign up
>
),
[onAction]
);
const uploadAction = React.useMemo(
() => (
),
[onUpload]
);
return (
{uploadAction}
}
>
{authActions}
);
};