File size: 391 Bytes
3d7d9b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import { ToastProvider, ErrorBoundary } from './toast';
import './index.css';

createRoot(document.getElementById('root')!).render(
  <StrictMode>

    <ErrorBoundary>

      <ToastProvider>

        <App />

      </ToastProvider>

    </ErrorBoundary>

  </StrictMode>
);