Skip to content

Commit

Permalink
perf: improve load time
Browse files Browse the repository at this point in the history
  • Loading branch information
dubisdev committed Jul 9, 2023
1 parent 3a5cb31 commit 12c40dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import ReactDOM from "react-dom/client";
import { App } from "./App";
import * as xPython from "@x-python/core";

xPython.init();

ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
);


await xPython.init();

0 comments on commit 12c40dd

Please sign in to comment.