import { Text, View, Button, useEventHandler } from "@nodegui/react-nodegui"; import { QPushButtonSignals } from "@nodegui/nodegui"; import React from "react"; import open from "open"; export function StepTwo() { const btnHandler = useEventHandler( { clicked: () => open("https://react.nodegui.org").catch(console.log) }, [] ); return ( {`
  1. Open chrome and navigate to chrome://inspect. You should see a target below with your app.

  2. Next click on "Open dedicated DevTools for Node"

  3. On the dedicated devtools. Click on Source > Node > "Your node process"
`}
); } const containerStyle = ` flex: 1; justify-content: 'space-around'; `; const textStyle = ` padding-right: 20px; `; const btnStyle = ` margin-horizontal: 20px; height: 40px; `;