import React from 'react'; import './PresentationDetailsForm.css'; interface PresentationDetailsFormProps { title: string; description: string; onTitleChange: (title: string) => void; onDescriptionChange: (description: string) => void; } export const PresentationDetailsForm: React.FC = ({ title, description, onTitleChange, onDescriptionChange }) => { return (

Presentation Details

onTitleChange(e.target.value)} placeholder="Enter presentation title" className="form-input" required />