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
@@ -0,0 +1,12 @@
import React from 'react';
import './Overlay.css';
export default function Overlay({ visible, onClick }) {
return (
<div
className={`overlay ${visible ? 'overlay--visible' : ''}`}
onClick={onClick}
aria-hidden="true"
/>
);
}