import React from "react"; import { BrowserRouter, Routes, Route } from "react-router-dom"; import { Home, Playlists, Profile, Queue, Tracks } from "./pages"; import { history } from "./utils/history"; const App = () => { return ( } /> } /> } /> } /> } /> ); }; export default App;