import { Renderer, View, Text, Button, Window, Image, useEventHandler } from "@nodegui/react-nodegui"; import React, { useState } from "react"; import { AspectRatioMode } from "@nodegui/nodegui"; //@ts-ignore import imageUrl from "../assets/sample.jpg"; const fixedSize = { width: 500, height: 500 }; const App = () => { const [time, setTime] = useState(new Date()); const btnHandler = useEventHandler( { clicked: () => setTime(new Date()) }, [] ); console.log(imageUrl); return (