import React from "react"; import { PrivateRoute } from "./Components"; import { BrowserRouter, Routes, Route } from "react-router-dom"; import { Home, Playlists, Profile, Queue, Tracks, Login, Register, Upload, } from "./Pages"; import { history } from "./utils/history"; import PlaylistItem from "./Pages/PlaylistItem/PlaylistItem"; // history.listen(() => console.log(history.location)) const App = () => { return ( }> } /> }> } /> }> } /> }> } /> }> } /> }> } /> }> } /> } /> } /> ); }; export default App;