Skip to content

Instantly share code, notes, and snippets.

@covelitein
Created February 25, 2023 11:23
Show Gist options
  • Save covelitein/cd1db63952c2dde8a133ea9cd1e7ca44 to your computer and use it in GitHub Desktop.
Save covelitein/cd1db63952c2dde8a133ea9cd1e7ca44 to your computer and use it in GitHub Desktop.
import React from 'react'
import ReactDOM from 'react-dom'
import { BrowserRouter } from 'react-router-dom'
import './index.css'
import App from './App'
import { initCometChat } from './services/Chat'
initCometChat().then(() => {
ReactDOM.render(
<BrowserRouter>
<App />
</BrowserRouter>,
document.getElementById('root')
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment