"use client"; import Upload from "../../../components/controls/Upload"; import { useTranslation } from "../../../contexts/MessagesContext"; import { useCreateFlow } from "../../context/CreateFlowContext"; import { useCreateFlowMdUp } from "../../hooks/useCreateFlowMdUp"; import { CreateFlowHeaderLockup } from "../../components/CreateFlowHeaderLockup"; import { CreateFlowStepShell } from "../../components/CreateFlowStepShell"; /** Create Community — frame 6 (Figma 20094-41524). */ export function CommunityUploadScreen() { const { markCreateFlowInteraction } = useCreateFlow(); const mdUp = useCreateFlowMdUp(); const t = useTranslation("create.communityUpload"); const handleUploadClick = () => { markCreateFlowInteraction(); }; return (
); }