Initial React app setup on login/signup branch

This commit is contained in:
Hafez
2026-05-21 19:23:12 +03:30
parent dbabee2017
commit 844e8c258b
23 changed files with 1333 additions and 171 deletions
+16
View File
@@ -0,0 +1,16 @@
import React from 'react';
const PopupNotification = ({ visible, message, isError, onClose }) => {
if (!visible) return null;
return (
<div className={`popup-notification ${isError ? 'error' : 'success'}`}>
<div className="popup-message">{message}</div>
<button className="popup-button" onClick={onClose}>
[ OK ]
</button>
</div>
);
};
export default PopupNotification;