completionId: cgen-03d42e20b8e440729ef0d219cfac5026
cgen-03d42e20b8e440729ef0d219cfac5026
This commit is contained in:
parent
1bee8deece
commit
8ec2a14d46
1 changed files with 6 additions and 9 deletions
|
|
@ -6,15 +6,12 @@ import { useState, useMemo } from "react";
|
|||
import { ChevronRight, Zap, Users, Code } from "lucide-react";
|
||||
|
||||
interface CreatorProfileProps {
|
||||
data: {
|
||||
bio?: string;
|
||||
skills: string[];
|
||||
primaryArm?: string;
|
||||
};
|
||||
onChange: (data: any) => void;
|
||||
onNext: () => void;
|
||||
onPrev: () => void;
|
||||
isTransitioning: boolean;
|
||||
data: any;
|
||||
updateData: (data: any) => void;
|
||||
nextStep: () => void;
|
||||
prevStep: () => void;
|
||||
currentStep: number;
|
||||
totalSteps: number;
|
||||
}
|
||||
|
||||
const AVAILABLE_ARMS = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue