mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 20:11:32 +02:00
* Create a UI to test socket connection * Add Clock Delta to the measurements * Add colors to DiagnosticItem * Update icon * Add more info to the diagnostics screen * Add logs in backend on debug messages, disconnections and connection * Add last received ping info * Reorder DiagnosticItems * Remove "warning" text color (too light) * Replace Phosphor icons by Material Icons GitOrigin-RevId: 6a015b4928cd19849ff287cf254f671840ed44af
11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
import '../marketing'
|
|
|
|
import ReactDOM from 'react-dom'
|
|
import { SocketDiagnostics } from '@/features/socket-diagnostics/components/socket-diagnostics'
|
|
|
|
const socketDiagnosticsContainer = document.getElementById('socket-diagnostics')
|
|
|
|
if (socketDiagnosticsContainer) {
|
|
ReactDOM.render(<SocketDiagnostics />, socketDiagnosticsContainer)
|
|
}
|