Files
harbor-net/src/web/main.tsx
T
dokril 34d8b681ad
Build and Deploy Gateway / build-and-push (push) Failing after 2s
Build and Deploy Gateway / deploy (push) Has been skipped
Refactor VPN proxy client implementation
2026-08-09 00:41:52 +03:00

9 lines
251 B
TypeScript

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 />);