import withFormHandling from './FormHandling'; import '../styles/Form.css'; const GuestbookForm = ({ state, handleChange, handleSubmit }) => (
); const getGuestbookApiUrl = () => `${import.meta.env.PUBLIC_API_URL}/guestbook`; export default withFormHandling(GuestbookForm, getGuestbookApiUrl, { name: '', website: '', message: '', messageId: '' });