ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1import React from "react"; 2import ReactDOM from "react-dom/client"; 3import App from "./App"; 4import "./index.css"; 5 6ReactDOM.createRoot(document.getElementById("root")!).render( 7 <React.StrictMode> 8 <App /> 9 </React.StrictMode>, 10);