/** * File: AppForm.tsx * Created by: AI Assistant * Date: 2025-11-29 * Purpose: Form component for kreatiVortex platform * Part of: kreatiVortex - Platform Pembelajaran Tari Online */ 'use client'; import React from 'react'; import { cn } from '@/lib/utils'; interface AppFormProps { children: React.ReactNode; className?: string; onSubmit?: (e: React.FormEvent) => void; } const AppForm = React.forwardRef( ({ children, className, onSubmit, ...props }, ref) => { return (
{children}
); } ); AppForm.displayName = 'AppForm'; export default AppForm;