'use client'; import { useState } from 'react'; import ProductForm from '../../inventory/ProductForm'; export default function ExpandableCreateProductSection() { const [isExpanded, setIsExpanded] = useState(false); return (
{isExpanded && (
)}
); }