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";
|
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 = [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue