(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
98
fork

Configure Feed

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

at ui-refactor 13 lines 329 B view raw
1import React from "react"; 2import ReactDOM from "react-dom/client"; 3import { BrowserRouter } from "react-router-dom"; 4import App from "./App"; 5import "./index.css"; 6 7ReactDOM.createRoot(document.getElementById("root")).render( 8 <React.StrictMode> 9 <BrowserRouter> 10 <App /> 11 </BrowserRouter> 12 </React.StrictMode>, 13);