completionId: cgen-03d42e20b8e440729ef0d219cfac5026

cgen-03d42e20b8e440729ef0d219cfac5026
This commit is contained in:
Builder.io 2025-11-08 02:14:41 +00:00
parent 1bee8deece
commit 8ec2a14d46

View file

@ -6,15 +6,12 @@ import { useState, useMemo } from "react";
import { ChevronRight, Zap, Users, Code } from "lucide-react"; import { ChevronRight, Zap, Users, Code } from "lucide-react";
interface CreatorProfileProps { interface CreatorProfileProps {
data: { data: any;
bio?: string; updateData: (data: any) => void;
skills: string[]; nextStep: () => void;
primaryArm?: string; prevStep: () => void;
}; currentStep: number;
onChange: (data: any) => void; totalSteps: number;
onNext: () => void;
onPrev: () => void;
isTransitioning: boolean;
} }
const AVAILABLE_ARMS = [ const AVAILABLE_ARMS = [