2023-12-08 05:20:55 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom/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';
|
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
2023-12-28 10:01:46 +00:00
|
|
|
import { Toaster } from 'react-hot-toast';
|
2023-12-08 05:20:55 +00:00
|
|
|
|
|
|
|
const root = ReactDOM.createRoot(
|
|
|
|
document.getElementById('root') as HTMLElement,
|
|
|
|
);
|
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
2023-12-19 09:17:02 +00:00
|
|
|
<ThemeProvider>
|
|
|
|
<App />
|
2023-12-28 10:01:46 +00:00
|
|
|
<Toaster position="bottom-center" />
|
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();
|