diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-02 01:07:55 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-02 01:07:55 -0700 |
commit | 1ec5a8d088f599d094f387abc6014f228607b605 (patch) | |
tree | 0d0e0271b6d5db354a56337c5de9df1a933e767b /src/main.tsx | |
parent | a333ce8845de4269d6a6f5523d2273da11fe271c (diff) | |
download | the-abstraction-engine-1ec5a8d088f599d094f387abc6014f228607b605.tar.gz the-abstraction-engine-1ec5a8d088f599d094f387abc6014f228607b605.zip |
add interactable component
Diffstat (limited to 'src/main.tsx')
-rw-r--r-- | src/main.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main.tsx b/src/main.tsx index 94b1039..7404467 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1,9 +1,4 @@ -import React from "react"; import ReactDOM from "react-dom/client"; import { App } from "./App.tsx"; import "./css/style.css"; -ReactDOM.createRoot(document.getElementById("root")!).render( - <React.StrictMode> - <App /> - </React.StrictMode>, -); +ReactDOM.createRoot(document.getElementById("root")!).render(<App />); |