import React from "react"; import SerialPort from "serialport"; const App = () => { const port = new SerialPort("COM5", { baudRate: 9600, autoOpen: false, }); const handler = () => { // eslint-disable-next-line port.write('off', (err) => { if (err) { return console.log("Error on write: ", err.message); } console.log("message written"); }); }; return (

Hello World

); }; export default App;