import { Text, View, Button } from "@nodegui/react-nodegui"; import { QPushButtonEvents } from "@nodegui/nodegui"; import React from "react"; import open from "open"; const buttonEventHandler = { [QPushButtonEvents.clicked]: () => { open("https://react.nodegui.org").catch(console.log); } }; export function StepTwo() { 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 textStyle = ` padding-right: 20px; `; const btnStyle = ` margin-horizontal: 20px; height: 40px; `;