A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
41
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 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}