Write on the margins of the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
at main 10 lines 261 B view raw
1import React from 'react'; 2import ReactDOM from 'react-dom/client'; 3import App from '@/components/popup/App'; 4import '@/assets/styles.css'; 5 6ReactDOM.createRoot(document.getElementById('root')!).render( 7 <React.StrictMode> 8 <App /> 9 </React.StrictMode> 10);