A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
at main 182 B view raw
1import { createRoot } from "react-dom/client"; 2import App from "./App"; 3 4const el = document.getElementById("root"); 5if (el) { 6 const root = createRoot(el); 7 root.render(<App />); 8}