Files
pwap/web/src/main.tsx
T

17 lines
380 B
TypeScript

import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
import './i18n/config'
// Add window.ethereum type declaration
declare global {
interface Window {
ethereum?: any;
Buffer: any;
global: any;
}
}
// All providers are now in App.tsx for better organization
createRoot(document.getElementById("root")!).render(<App />);