Skip to content

Instantly share code, notes, and snippets.

@blitzblade
Last active May 23, 2022 10:55
Show Gist options
  • Save blitzblade/7b0c00dc7f7f853c0a2cf8c11ca0d416 to your computer and use it in GitHub Desktop.
Save blitzblade/7b0c00dc7f7f853c0a2cf8c11ca0d416 to your computer and use it in GitHub Desktop.
#medium
import React from 'react';
import { BrowserRouter, Routes, Route } from "react-router-dom";
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import Twittercallback from './TwitterCallback'; //new
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<> {/*new*/}
<BrowserRouter>
<Routes>
<Route path="/" element={<App/>} />
<Route path="/twitter_auth_callback" element={<Twittercallback/>} />
</Routes>
</BrowserRouter>
</>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment