2024-04-11 21:40:22 +00:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
import assert from "assert";
|
|
|
|
import { GQLClient } from "gql-client";
|
2023-12-19 09:17:02 +00:00
|
|
|
|
2024-04-11 21:40:22 +00:00
|
|
|
import { ThemeProvider } from "@material-tailwind/react";
|
2023-12-19 09:17:02 +00:00
|
|
|
|
2024-04-11 21:40:22 +00:00
|
|
|
import "./index.css";
|
|
|
|
import "@fontsource/inter";
|
|
|
|
import "@fontsource-variable/jetbrains-mono";
|
|
|
|
import App from "./App";
|
|
|
|
import reportWebVitals from "./reportWebVitals";
|
|
|
|
import { GQLClientProvider } from "./context/GQLClientContext";
|
|
|
|
import { SERVER_GQL_PATH } from "./constants";
|
|
|
|
import { Toaster } from "components/shared/Toast";
|
|
|
|
import Web3ModalProvider from "./context/Web3ModalProvider";
|
2023-12-08 05:20:55 +00:00
|
|
|
const root = ReactDOM.createRoot(
|
2024-04-11 21:40:22 +00:00
|
|
|
document.getElementById("root") as HTMLElement,
|
2023-12-08 05:20:55 +00:00
|
|
|
);
|
2024-01-18 04:34:02 +00:00
|
|
|
|
2024-02-22 11:56:26 +00:00
|
|
|
assert(
|
2024-04-11 21:40:22 +00:00
|
|
|
import.meta.env.VITE_SERVER_URL,
|
|
|
|
"REACT_APP_SERVER_URL is not set in env",
|
2024-02-22 11:56:26 +00:00
|
|
|
);
|
2024-04-11 21:40:22 +00:00
|
|
|
const gqlEndpoint = `${import.meta.env.VITE_SERVER_URL}/${SERVER_GQL_PATH}`;
|
2024-01-18 04:34:02 +00:00
|
|
|
|
|
|
|
const gqlClient = new GQLClient({ gqlEndpoint });
|
|
|
|
|
2023-12-08 05:20:55 +00:00
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
2023-12-19 09:17:02 +00:00
|
|
|
<ThemeProvider>
|
2024-01-18 04:34:02 +00:00
|
|
|
<GQLClientProvider client={gqlClient}>
|
2024-02-26 20:11:18 +00:00
|
|
|
<Web3ModalProvider>
|
|
|
|
<App />
|
|
|
|
</Web3ModalProvider>
|
2024-02-22 09:11:37 +00:00
|
|
|
<Toaster />
|
2024-01-18 04:34:02 +00:00
|
|
|
</GQLClientProvider>
|
2023-12-19 09:17:02 +00:00
|
|
|
</ThemeProvider>
|
2023-12-08 05:20:55 +00:00
|
|
|
</React.StrictMode>,
|
|
|
|
);
|
|
|
|
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
|
|
reportWebVitals();
|