mirror of
https://github.com/mauricioabh/arbpulse.git
synced 2026-07-28 16:17:43 +00:00
2e8744ccf0
Real-time BTC cross-exchange arbitrage detection (Kraken, Bybit, OKX, Binance) with React dashboard, GitHub Actions CI, and documented Fly.io deploy workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import { App } from "./App";
|
|
import "./index.css";
|
|
|
|
const root = document.getElementById("root");
|
|
if (!root) throw new Error("root element not found");
|
|
|
|
ReactDOM.createRoot(root).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
);
|