import React, { useState } from 'react'; import "../styleing/addPost.css" const AddPostForm = ({ onAddPost }) => { const [newPost, setNewPost] = useState({ title: '', body: '' }); const handleSubmit = (e) => { e.preventDefault(); if (newPost.title && newPost.body) { onAddPost(newPost); setNewPost({ title: '', body: '' }); } else { alert('Title and Body are required!'); } }; return (