import { FC } from "react"; // next import Image from "next/image"; // ui import { PrimaryButton } from "components/ui"; // icon import { AssignmentClipboardIcon } from "components/icons"; // img import JoinProjectImg from "public/join-project.svg"; export interface JoinProjectProps { isJoiningProject: boolean; handleJoin: () => void; } export const JoinProject: FC = ({ isJoiningProject, handleJoin }) => (
JoinProject

You are not a member of this project

You are not a member of this project, but you can join this project by clicking the button below.

{isJoiningProject ? "Joining..." : "Click to join"}
);