import React, { FC } from "react"; import Link from "next/link"; import { EAuthModes } from "./auth-forms"; type Props = { mode: EAuthModes | null; }; export const TermsAndConditions: FC = (props) => { const { mode } = props; return (

{mode ? mode === EAuthModes.SIGN_UP ? "By creating an account" : "By signing in" : "By clicking the above button"} , you agree to our{" \n"} Terms of Service {" "} and{" "} Privacy Policy {"."}

); };