adding desktop 2 app with electron forge

This commit is contained in:
talksik
2022-03-17 09:55:11 -04:00
parent 31fd3638ba
commit 20ddc5a324
16 changed files with 34784 additions and 1411 deletions
+10
View File
@@ -0,0 +1,10 @@
import "./index.css";
import * as React from "react";
import * as ReactDOM from "react-dom";
function render() {
ReactDOM.render(<h2>Hello from React!</h2>, document.getElementById("root"));
}
render();