feat: wrap topbar in browser router

This commit is contained in:
karishmas6
2024-03-07 02:29:10 +05:30
parent 2490439c69
commit 7b716b2664

View File

@@ -1,12 +1,10 @@
function App() { import Topbar from "./components/Topbar";
import { BrowserRouter } from 'react-router-dom'
return ( const App = () => (
<> <BrowserRouter>
<h1 className="text-3xl font-bold underline"> <Topbar />
Hello world! </BrowserRouter>
</h1> );
</>
)
}
export default App export default App;