import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import Donate from './pages/Donate';
import './index.css';

const path = window.location.pathname;

createRoot(document.getElementById('root')).render(
  <StrictMode>
    {path === '/donate' ? <Donate /> : <App />}
  </StrictMode>,
);
