function Form({ children, action = "#", method = "post", styles, onSubmitHandler, }) { return (
{children}
); } export default Form;