changing text

This commit is contained in:
talksik
2022-04-28 06:42:18 -05:00
parent f38436ae0c
commit 056a45de78
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ const createWindow = (): void => {
overlayWindow.loadURL(SECOND_WINDOW_WEBPACK_ENTRY);
// Open the DevTools.
browserWindow.webContents.openDevTools({ mode: "right" });
overlayWindow.webContents.openDevTools({ mode: "left" });
browserWindow.webContents.openDevTools({ mode: "detach" });
overlayWindow.webContents.openDevTools({ mode: "detach" });
};
// This method will be called when Electron has finished
+3 -1
View File
@@ -3,7 +3,9 @@ import * as ReactDOM from "react-dom";
function render() {
ReactDOM.render(
<div>this is the best in the world</div>,
<div>
this is the overlay for video streams and conversations to be passed in
</div>,
document.getElementById("root")
);
}