working version with js electron set up sending data to channel and stuff through to the main process
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import * as React from "react";
|
||||
import * as ReactDOM from "react-dom";
|
||||
|
||||
import Login from "./pages/Login";
|
||||
|
||||
function render() {
|
||||
ReactDOM.render(
|
||||
<>
|
||||
<Login />
|
||||
</>,
|
||||
document.body
|
||||
);
|
||||
}
|
||||
|
||||
render();
|
||||
Reference in New Issue
Block a user