Refactor VPN proxy client implementation
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
import { App } from './App.js';
|
||||
import './styles/index.css';
|
||||
|
||||
const root = document.getElementById('root');
|
||||
if (!root) throw new Error('Harbor root element not found');
|
||||
createRoot(root).render(<App />);
|
||||
Reference in New Issue
Block a user