import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import './index.css'; import { initAPI } from './api'; initAPI().then(() => { ReactDOM.createRoot(document.getElementById('root')!).render( , ); });