Create frontend

This commit is contained in:
IgorVolochay
2026-08-13 11:35:00 +03:00
parent 343c108e51
commit 9327ac53eb
33 changed files with 2083 additions and 87 deletions
+15
View File
@@ -0,0 +1,15 @@
import React from 'react';
import './Toast.css';
export default function Toast({ message }) {
if (!message) return null;
return (
<div className="toast" role="status" aria-live="polite">
<div className="toast-content">
<span className="toast-icon"></span>
<span className="toast-text">{message}</span>
</div>
</div>
);
}