2023-12-08 05:20:55 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom/client';
|
2024-01-18 04:34:02 +00:00
|
|
|
import assert from 'assert';
|
|
|
|
import { Toaster } from 'react-hot-toast';
|
|
|
|
import { GQLClient } from 'gql-client';
|
2023-12-19 09:17:02 +00:00
|
|
|
|
|
|
|
import { ThemeProvider } from '@material-tailwind/react';
|
|
|
|
|
2023-12-08 05:20:55 +00:00
|
|
|
import './index.css';
|
2024-02-19 13:15:32 +00:00
|
|
|
import '@fontsource/inter';
|
2023-12-08 05:20:55 +00:00
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
2024-01-18 04:34:02 +00:00
|
|
|
import { GQLClientProvider } from './context/GQLClientContext';
|
2023-12-08 05:20:55 +00:00
|
|
|
|
|
|
|
const root = ReactDOM.createRoot(
|
|
|
|
document.getElementById('root') as HTMLElement,
|
|
|
|
);
|
2024-01-18 04:34:02 +00:00
|
|
|
|
|
|
|
const gqlEndpoint = process.env.REACT_APP_GQL_SERVER_URL;
|
|
|
|
assert(gqlEndpoint, 'GQL server URL not provided');
|
|
|
|
|
|
|
|
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}>
|
|
|
|
<App />
|
|
|
|
<Toaster position="bottom-center" />
|
|
|
|
</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();
|