"use client"; import RuleCard from "../../../components/cards/RuleCard"; import { useTranslation } from "../../../contexts/MessagesContext"; import { CreateFlowHeaderLockup } from "../../components/CreateFlowHeaderLockup"; import { useCreateFlow } from "../../context/CreateFlowContext"; import { useCreateFlowLgUp } from "../../hooks/useCreateFlowLgUp"; import { CreateFlowStepShell } from "../../components/CreateFlowStepShell"; import { CREATE_FLOW_MD_UP_GRID_CELL_CLASS, CREATE_FLOW_TWO_COLUMN_MAX_WIDTH_CLASS, } from "../../components/createFlowLayoutTokens"; /** Create Community review — Figma `19706:12135` (`/create/review`; two columns from `lg:`; column caps in `createFlowLayoutTokens`). */ export function CommunityReviewScreen() { const lgUp = useCreateFlowLgUp(); const t = useTranslation("create.review"); const { state } = useCreateFlow(); const cardTitle = typeof state.title === "string" && state.title.trim().length > 0 ? state.title.trim() : t("ruleCard.title"); const cardDescription = typeof state.communityContext === "string" && state.communityContext.trim().length > 0 ? state.communityContext.trim() : t("ruleCard.description"); return (
); }