import ReactDOM from "react-dom/client"; const currentDate = new Date(); const year = currentDate.getFullYear(); const timer = <div>Mamy rok: {"year"}</div>; ReactDOM.createRoot(document.getElementById("root")).render(timer);