"use client"; import { Card, Button } from "flowbite-react"; import { useRouter } from "next/navigation"; export const ProfileActions = (props: { isMyProfile: boolean; isFriendRequestsDisallowed: boolean; profile_id: number; }) => { return (
{props.isMyProfile && } {!props.isMyProfile && ( <> {!props.isFriendRequestsDisallowed && ( )} )}
); };