import React from 'react'; import { render } from 'react-dom'; import { ConnectionProvider } from './contexts/ConnectionContext'; import App from './App'; const root = document.getElementById('root'); const app = ( ); render(app, root); if ((module as any).hot) { (module as any).hot.accept() }