import Form from 'sentry/components/forms/form';
import ExternalLink from 'sentry/components/links/externalLink';
import NarrowLayout from 'sentry/components/narrowLayout';
import {t, tct} from 'sentry/locale';
import type {PartnershipAgreementProps} from 'sentry/types/hooks';
export default function PartnershipAgreement({
partnerDisplayName,
agreements,
onSubmitSuccess,
organizationSlug,
}: PartnershipAgreementProps) {
const tos = (
terms of service
);
const privacyPolicy = (
privacy policy
);
return (
);
}