this repo has no description
0
fork

Configure Feed

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

at main 16 lines 348 B view raw
1import React from 'react'; 2import ReactDOM from 'react-dom/client'; 3 4import App from './App'; 5import './globals.css'; 6 7const rootElement = document.getElementById('root'); 8if (rootElement === null) { 9 throw new Error('Root element not found'); 10} 11 12ReactDOM.createRoot(rootElement).render( 13 <React.StrictMode> 14 <App /> 15 </React.StrictMode>, 16);