Files
wallet/apps/extension/entrypoints/popup/index.tsx
T
Hanzo AI 78b18797d5 init: extract wallet from lux/exchange monorepo
Copies apps/extension, apps/mobile and 10 pkgs (wallet, ui, config,
utilities, sessions, gating, notifications, analytics, eslint-config,
prices) into a standalone pnpm workspace.  Resolves merge conflict
markers in extension and mobile package.json files, strips build
artifacts (.wxt, .output, Pods).
2026-04-11 01:59:19 -07:00

7 lines
178 B
TypeScript

import { createRoot } from 'react-dom/client'
import App from './App'
const container = document.getElementById('root')!
const root = createRoot(container)
root.render(<App />)