index.jsx 295 B

123456789
  1. import React from 'react';
  2. import { createRoot } from 'react-dom/client';
  3. import Popup from './Popup';
  4. import './index.css';
  5. const container = document.getElementById('app-container');
  6. const root = createRoot(container); // createRoot(container!) if you use TypeScript
  7. root.render(<Popup />);