import { View, Text, Window, Image, ScrollArea, hot } from "@nodegui/react-nodegui"; import path from "path"; import React from "react"; import { AspectRatioMode } from "@nodegui/nodegui"; import { MyText } from "./components/mytext"; import imageUrl from "../assets/nodegui.jpg"; const distImgUrl = path.resolve(__dirname, imageUrl); const minSize = { width: 500, height: 400 }; class App extends React.Component { render() { return ( <> Yo!! Testing ); } } const imageStyle = ` height: "700px"; width: "700px"; qproperty-alignment: 'AlignHCenter'; `; const styleSheet = ` #container { flex: 1; min-height: 0; min-width: 0; width: '900'; height: '900'; flex-direction: column; align-items: 'center'; justify-content: 'center'; background-color: 'grey'; } `; export default hot(App);