import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
import { initNativeShell } from "./lib/native-boot";

// Configure the Capacitor native shell (status bar, keyboard, splash) before
// the first render. No-op on the web build.
initNativeShell();

createRoot(document.getElementById("root")!).render(<App />);
