Skip to content

Commit

Permalink
Alpha Release v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MohdSaleh committed Aug 4, 2023
1 parent a3fa7f9 commit e7de11b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion client/src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
//*******************************************************************
//* *
//* XCULE VERSION v0.1 *
//* *
//*******************************************************************
//* *
//* ALPHA RELEASE *
//* *
//*******************************************************************


import * as ReactDOMClient from "react-dom/client";
import App from "./App";
import "./index.css";

const container = document.getElementById("root");
const root = ReactDOMClient.createRoot(container);
root.render(<App />);
root.render(<App />);

0 comments on commit e7de11b

Please sign in to comment.