adding in main electron app with react

This commit is contained in:
talksik
2022-05-27 20:20:55 -05:00
parent fd1bc9d1ab
commit 16774ed073
16 changed files with 7072 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
import * as React from 'react';
import ReactDOM from "react-dom/client";
const root = ReactDOM.createRoot(document.body as HTMLElement);
root.render(
<React.StrictMode>
hello from react
</React.StrictMode>
);