import React, { useEffect } from 'react'; import PrincipalRoutes from './PrincipalRoutes'; import { config } from '../../../config'; const App = () => { if(config.ENV === 'development') { useEffect(() => { const ws = new WebSocket(`wss://${config.HOST}/ws`); ws.onmessage = (event) => { if (event.data === 'reload') { window.location.reload(); } }; }, []); } return ; }; export default App;