aurudubot / client /src /index.js
Alexainc
VILLAGE FESTIVAL 2026: Telegram Integration & Leaderboards
459c2fd
Raw
History Blame Contribute Delete
209 Bytes
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
const container = document.getElementById('root');
const root = createRoot(container);
root.render(<App />);