import * as React from "react"; import { PartialFormEvent } from "./front_page"; import { t } from "../i18next_wrapper"; export const TermsCheckbox = (props: { privUrl: string, tosUrl: string, onChange: (event: PartialFormEvent) => void, agree: boolean | undefined, }) =>
{`${t("I agree to the")} `} {t("Privacy Policy")} {` ${t("and")} `} {t("Terms of Use")}
;