//=========================================== // THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template //=========================================== import { Button, Typography } from "@hexclave/ui"; import { useState } from "react"; import { Team } from "../../.."; import { useUser } from "../../../lib/hooks"; import { useTranslation } from "../../../lib/translations"; import { Section } from "../section"; export function LeaveTeamSection(props: { team: Team }) { const { t } = useTranslation(); const user = useUser({ or: 'redirect' }); const [leaving, setLeaving] = useState(false); return (
{!leaving ? (
) : (
{t("Are you sure you want to leave the team?")}
)}
); }