import React, { useState } from "react"; const PasswordPopup = ({ title, onSubmit, onClose }) => { const [password, setPassword] = useState(""); const handleSubmit = (e) => { e.preventDefault(); onSubmit(password); }; return (
Enter the password to continue