import { FC } from "react"; // ui import { SecondaryButton } from "components/ui"; export interface JoinProjectProps { isJoiningProject: boolean; handleJoin: () => void; } export const JoinProject: FC = ({ isJoiningProject, handleJoin }) => (

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"}
);