import React from "react"; | |
import ReactDOM from "react-dom/client"; | |
import App from "./App"; | |
import store from "./redux/store/store"; | |
import { Provider } from "react-redux"; | |
import "./styles/global/index.css"; | |
import "./assets/fonts/fonts.css"; | |
// import * as dotenv from "dotenv"; | |
// dotenv.config(); | |
const root = ReactDOM.createRoot( | |
document.getElementById("root") as HTMLElement | |
); | |
root.render( | |
<Provider store={store}> | |
<App /> | |
</Provider> | |
); | |