Files
wolfDash/src/client/index.js
2025-12-21 01:46:12 +01:00

8 lines
209 B
JavaScript

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 />);