Select the types of activity you want to include in your feed.
1import React from 'react'; 2import { createRoot } from 'react-dom/client'; 3 4import App from './App'; 5 6createRoot(document.getElementById('root')).render(<App />);