import React, { useState } from "react"; function Info(props) { const [open, setOpen] = useState(false); return (
{ setOpen(!open); }} > ?

Geshem.space shows real-time rain radar data in Israel.

The entire source code is open and available at

https://github.com/yuvadm/geshem.space

גשם.ספייס מציג מידע בזמן אמת על ענני גשם בכל הארץ

קוד המקור של האתר פתוח וזמין לצפייה בכתובת

https://github.com/yuvadm/geshem.space

); } export default Info;