import CategoryForm from "./CategoryForm"; import type { Category } from "@/lib/categories"; type CategoryStepProps = { category: Category; value: string; onChange: (value: string) => void; }; export default function CategoryStep({ category, value, onChange }: CategoryStepProps) { return (
{category.title}

{category.prompt}

D

{category.tip}

); }